|
public class IfAge{
public static void main(String[] args){
double a=Double.parseDouble(args[0]);
if(a>20){
System.out.println("if{}例子: "+a);
System.out.println("的年龄: "+a);
System.out.println("超过跳舞的限制: 20");
System.out.println("就不能再跳舞了");}
if(a>20)
System.out.println("if例子: \n的年龄超过跳舞的限制,您就不能再跳舞了!");
if(a<20){
System.out.println("if{}例子: "+a);
System.out.println("的年龄: "+a);
System.out.println("超过跳舞的限制: 20");
System.out.println("就可以继续跳舞");
}
if(a<20)
System.out.println("if例子: \n的年龄没有超过跳舞的限制,您就可以继续跳舞!");
}
} |
|