码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 1076 水

时间:2015-03-06 17:10:23      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

#include<cstdio>
#include<iostream>

bool isleap(int x){
     return (x%4 == 0 && x%100 !=0) || x%400 == 0;
}

int main(void){
    int t;
    scanf("%d",&t);
    while(t--){
        int n,m,count=0;;
        scanf("%d%d",&n,&m);
        while(1){
            if(isleap(n)){
              count++;
              if(count == m){
                printf("%d\n",n);
                break;
              }
            }
            n+=4-(n%4);
        }
    }
    return 0;
}

hdu 1076 水

标签:

原文地址:http://blog.csdn.net/jibancanyang/article/details/44101675

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!