int age=25;
if(age>=18){
System.out.println("成年");
}else{
System.out.println("未成年");
}
}
System.out.println("成年")和System.out.println("未成年")后面的分号 ; 要用英文的不能是使用中文状态下的
你的符号用的中文,要用英文状态下的符号
class hh{
public static void main(String[] args){
int age=25;
if(age>=18){
System.out.println("成年");
}
else{
System.out.println("未成年");
}
}
}
多了个大括号