问一下你们怎么做啊 我是初学者 求答案 感谢 然后讲解一下 最好用sts写了拍给我
收起
2004+12就是啦。因为2004年是猴年,每12年一轮,所以year从2004开始,只有year+12是猴年,只需要判断是否是闰年就可以了。
运行结果:
代码:
public class Test {
public static void main(String[] args) {
for(int y = 2004;y<=2100;y+=12){
if(y%4==0&&y%100!=0 || y%400==0)
System.out.print(y+" ");
}
}
}
报告相同问题?