Fresh.587 2021-10-04 11:28 采纳率: 88%
浏览 56
已结题

java运行时出现Exception in thread "main" java.lang怎样更改

完整代码如下,不清楚问题出现在哪,请求指点!

package javashiyaner;
import java.util.Scanner;
public class Javashiyaner {   
    public static void main(String[] args) {   
  int year;    
 int month; 
    Scanner reader=new Scanner(System.in);     System.out.println("请输入年份:");   
  year=reader.nextInt();  
   System.out.println("请输入月份:");   
  month=reader.nextInt();    
 while(true){         if(month<1||month>12)             System.out.println("输入有误请重新输入:");         else break;     }      
  judge(year,month);    }   
 private static void judge(int year, int month) {        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.    }
    }
class judge{
public judge(int nian,int yue){      
  switch(yue){
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:System.out.println("该月有31天");break;
case 4:
case 6:
case 9:
case 11:System.out.println("该月有30天");break;  
      case 2:
if(nian%4==0&&nian%100!=0||nian%400==0)
System.out.println("该月有29天");
else System.out.println("该月有28天");}
}


}

img

展开全部

  • 写回答

2条回答 默认 最新

  • stacksoverflow 2021-10-04 11:36
    关注
    
    package javashiyaner;
    
    import java.util.Scanner;
    
    public class Javashiyaner {
        public static void main(String[] args) {
            int year;
            int month;
            Scanner reader = new Scanner(System.in);
            System.out.println("请输入年份:");
            year = reader.nextInt();
            System.out.println("请输入月份:");
            month = reader.nextInt();
            while (true) {
                if (month < 1 || month > 12)
                    System.out.println("输入有误请重新输入:");
                else
                    break;
            }
            judge(year, month);
        }
    
        public static void judge(int nian, int yue) {
            switch (yue) {
            case 1:
            case 3:
            case 5:
            case 7:
            case 8:
            case 10:
            case 12:
                System.out.println("该月有31天");
                break;
            case 4:
            case 6:
            case 9:
            case 11:
                System.out.println("该月有30天");
                break;
            case 2:
                if (nian % 4 == 0 && nian % 100 != 0 || nian % 400 == 0)
                    System.out.println("该月有29天");
                else
                    System.out.println("该月有28天");
            }
        }
    
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 10月13日
  • 已采纳回答 10月6日
  • 创建了问题 10月4日