if语句--java

Posted 跳动de手指

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了if语句--java相关的知识,希望对你有一定的参考价值。


class IfTest{
     public static void main(String args[]){
           int month;
        if(month<1 ||month>12){
               System.out.println("没有对应月季");
}else if(month=<5 && month>=3){
                  System.out.println(month+"月是春季");
}else if(month<=8 && month>=6){
                   System.out.println(month+"月是夏季");
}else if(month<=11 && month>=9){
                   System.out.println(month+"月是秋季");
}else{
                  System.out.println(month+"月是冬季");
}
}
}

 

public void day(int x){
          if(x==1){
             System.out.println("星期一");
}else if(x==2){
              System.out.println("星期二");               
} else if(x==3){
              System.out.println("星期三");               
} else if(x==4){
              System.out.println("星期四");               
} else if(x==5){
              System.out.println("星期五");               
} else if(x==6){
              System.out.println("星期六");               
} else if(x==7){
              System.out.println("星期日");               
} else{
              System.out.println("输入错误,只能输入1~7整数");
}
}
}

 

以上是关于if语句--java的主要内容,如果未能解决你的问题,请参考以下文章

PHP条件控制语句之“if语句”

20个简洁的 JS 代码片段

20个简洁的 JS 代码片段

如何重构这个 Java 代码片段

shell if 语句

mybatis学习日志二