第一个博客,练练手

package day;


import java.util.Scanner;


public class Test7 {


public static void main(String[] args) {
while(true)
{
System.out.println("请输出一个月份:moonth=");
int moonth=new Scanner(System.in).nextInt();
//1  3  5  7  8  10  12 
if(moonth==1||moonth==3||moonth==5||moonth==7||moonth==8||moonth==10||moonth==12)
{
System.out.println("这个月有31天");
}else if(moonth==4||moonth==6||moonth==9||moonth==11)
{
System.out.println("这个月有30天");
}else if(moonth==2)
{
System.out.println("这个月有28天");
}else{
System.out.println("您输入的月份有错误,系统自动退出");
System.exit(0);
}
}
}


}

猜你喜欢

转载自blog.csdn.net/weixin_40745306/article/details/78907338