java新手问个用多重if语句 实现闰年和年份月份的程序,做的头晕了...
发布网友
发布时间:2022-04-25 23:09
我来回答
共2个回答
热心网友
时间:2023-10-17 06:43
不是说你没有分,人家不帮你。
看到你的问题了,我们还得现做,再测,要时间的。
要是是感兴趣的问题,不给分一样做的。
参考一下吧,有什么问题再问。或是我的程序有什么不对的地方,指一下。
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
System.out.println("请输入年份:");
String strYear = in.next();
System.out.println("请输入月份:");
String strMonth = in.next();
while (!strMonth.matches("0?[1-9]|1[012]")){
System.out.println("输入的月份错误,请输入1-12之间的值。");
strMonth = in.next();
}
GregorianCalendar gc = new GregorianCalendar(Integer.parseInt(strYear),
Integer.parseInt(strMonth) - 1, Calendar.DATE);
GregorianCalendar gc1 = new GregorianCalendar(
Integer.parseInt(strYear), (Integer.parseInt(strMonth)),
Calendar.DATE);
Long dayNum = (gc1.getTimeInMillis() - gc.getTimeInMillis())
/ (1000 * 60 * 60 * 24);// 用下个月的第一天减去这个月的第一天(毫秒)
if (strMonth.matches("0?2") && gc.isLeapYear(Integer.parseInt(strYear))) // 这里有直接判断闰年的方法
System.out.println("这是闰年");
System.out.println(strYear + "年" + strMonth + "月有" + dayNum + "天");
}
热心网友
时间:2023-10-17 06:43
虽然不难.但是..0 分 没人给你写