In this task I keep getting an error message. I'm confused where I should put the curly braces.
package en.codegym.task.pro.task03.task0303;
import java.util.Scanner;
/*
School or college
*/
public class Solution {
public static void main(String[] args) {
Scanner console = new Scanner(System.in);
int age = console.nextInt();
if (age < 18)
if (age >= 6) {
} System.out.println("Off to school with you, my child");
else if {
(age >= 18)
} System.out.println("Your college class starts soon");
//else
//System.out.println();
}
}