java小程序
itafeng
这个作者很懒,什么都没留下…
展开
-
java-判断是否是闰年
编写程序,判断给定的某个年份是否是闰年。 闰年的判断规则如下: (1)若某个年份能被4整除但不能被100整除,则是闰年。 (2)若某个年份能被400整除,则也是闰年。 public class Test{ public static void main(String[] arge){ System.out.print("请输入年份"); int year原创 2012-08-19 14:49:23 · 8832 阅读 · 0 评论 -
java打印99乘法表
public class NineNine{ public static void main(String[]args){ System.out.println(); for (int j=1;j for(int k=1;k<10;k++) { if (k>j) break; System.out.p原创 2012-08-19 14:54:40 · 815 阅读 · 0 评论