liang183 发表于 2016-12-24 16:21:42

java实现显示闰年程序源码

package nameyu;public class Test {    public static void main(String[] args) {      // TODO Auto-generated method stub      int count=0;      for(int years=101;years<=2100;years++){            if((years%4==0&&years%100!=0)||(years%400==0)){                count++;                if(count%10==0){                  System.out.println(years);                }else                   System.out.print(years+"\t");            }      }      }}      
页: [1]
查看完整版本: java实现显示闰年程序源码