我叫王超然,是一名电脑爱好者,现在在新加坡留学上高一.我立志成为一名电脑人才,愿意在这里与大家一同分享我玩转电脑的心得.O-level华文考了A-One哈哈!
天气: 晴朗
心情: 高兴
/*P4Q11
* Name:Wang Chaoran
* Description:(Displaying leap years) Write a program that displays all the leap years,
ten per line, in the twenty-first century (from 2001 to 2100).
*/
class P4Q11
{
public static void main(String[]args)
{
int count = 0;
System.out.println("All the leap years, ten per line, in the twenty-first century (from 2001 to 2100): ");
//Calculate the leap year
for(int i=2001;i<=2100;i++)
{
if(((i%4==0)&&(i%100!=0))||(i%400==0))
{
count++;
//Display the leap year
if(count%8==0)
{
System.out.println();
}
else
{
System.out.printf("%-5d",i);
}
}
}
}
}
导入论坛查看(70)回复(0)引用(0)好评(0) 差评(0)
加入收藏
编辑
审核
TAG:
computing