<%!
     int findYear(){
            int count=0;
            for(int year=2000;year<=2013;year++){
                if((year%4==0&&year%100!=0)||year%400==0){
               
                         count++;
                            
                }
                       
            }
              return count;   
     }
 
      %>
     从2000年-2013年期间 ,共有<%=findYear() %>个闰年

相关文章:

  • 2021-04-21
  • 2021-12-06
  • 2021-09-13
  • 2021-09-20
  • 2021-12-23
  • 2021-10-09
  • 2021-12-02
猜你喜欢
  • 2021-04-09
  • 2021-10-12
  • 2022-01-12
相关资源
相似解决方案