首页 > 代码库 > if语句--java
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。