手拉手一起走
2016-01-17 11:20
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()后面你接了;号
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题