码迷,mamicode.com
首页 > 编程语言 > 详细

1121: 零起点学算法28——判断是否闰年

时间:2017-04-07 10:08:10      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:mat   print   nbsp   esc   mode   ext   web   else   time   

1121: 零起点学算法28——判断是否闰年

Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lld
Submitted: 3988  Accepted: 2204
[Submit][Status][Web Board]

Description

输入年份,判断是否闰年

 

Input

输入一个整数n(多组数据)

 

Output

如果是闰年,输出yes,否则输出no(每组数据一行)

 

Sample Input 技术分享

 
2000

 

Sample Output

yes

 

Source

 
 1 #include<stdio.h>
 2 int main(){
 3     int n;
 4     while(scanf("%d",&n)!=EOF){
 5         if(((n%4==0)&&(n%100!=0))||(n%400==0))
 6         printf("yes\n");
 7         else
 8         printf("no\n");
 9     }
10     return 0;
11 }

//闰年是 1.能被4整除 不能被100整除 2.能被400整除的年份。 

判断的时候,注意整除用% 不是 /

1121: 零起点学算法28——判断是否闰年

标签:mat   print   nbsp   esc   mode   ext   web   else   time   

原文地址:http://www.cnblogs.com/dddddd/p/6676286.html

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