用java编写程序,输出公元1800年到2000年所有闰年的年号,每输出3个年号换一行
答案:1 悬赏:70 手机版
解决时间 2021-11-19 04:15
- 提问者网友:欺烟
- 2021-11-18 09:03
用java编写程序,输出公元1800年到2000年所有闰年的年号,每输出3个年号换一行
最佳答案
- 五星知识达人网友:我住北渡口
- 2021-11-18 10:00
public static void main(String[] args) throws Exception {
int count=1;
for (int i = 1800; i < 2001; i++) {
if((i%4==0&&i%100!=0)||i%400==0){
hh(i,count++);
}
}
System.out.println(count);
}
public static void hh(int i,int count){
System.out.print(i+" ");
if(count%3==0)
System.out.print("
");
}
int count=1;
for (int i = 1800; i < 2001; i++) {
if((i%4==0&&i%100!=0)||i%400==0){
hh(i,count++);
}
}
System.out.println(count);
}
public static void hh(int i,int count){
System.out.print(i+" ");
if(count%3==0)
System.out.print("
");
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯