public class HelloWorld {
public static void main (String[] args){
int age=25;
String xx;
if(age>=18);{
xx="成年";
}
else {
xx="未成年";
}
System.out.println("null"+xx);
}
}
if语句后不应该加;
if条件判断不是执行语句,因此后不必加;
if()后面你接了;号