求改错 大神们
public class HelloWorld {
public static void main(String[] args) {
int age=160;
String xx;
if (age>=0&&age<=150){
if(age>100){
xx="人妖";
System.out.println("年龄:"+xx);
}
else if(age>60){
xx="老年";
System.out.println("年龄:"+xx);
}
else if(age>40){
xx="中年";
System.out.println("年龄:"+xx);
}
else if(age>18){
xx="少年";
System.out.println("年龄:"+xx);
}
else if(age>0){
xx="童年";
System.out.println("年龄:"+xx);
}
else{
xx="重新输入"
System.out.println("年龄:"+xx);
}
}
}