赞
踩
编写程序,显示从101到2100期间所有的闰年,每行显示10个。数字之间用一个空格字符隔开,同时显示这期间闰年的数目。
package 学习; import java.util.*; public class study { public static void main(String[] args) { int count=0; for(int year=101;year<=2100;year++) { boolean panduan=false; if(year%4==0) { panduan=true; } if(panduan) { count++; if(count%10==0) { System.out.println(year+" "); } else { System.out.print(year+" "); } } } System.out.print("从101年到2100年共有"+count+"个闰年"); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。