选择控制流程和c也是一毛一样,不做过多解释,上代码。
public class Test {
public static void main(String[] args) {
int a = 2;
if(a > 0){
System.out.println("a是大于零的数");
if(a == 1){
System.out.println("他是1");
}
else{
System.out.println("他是正整数");
}
}
else{
System.out.println("a是小于十的数");
}
switch (a) {
case 1:
System.out.println("这是1");
break;
case 2:
System.out.println("这是2");
break;
default:
System.out.println("这是其他值");
break;
}
}
}