欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

闰年

程序员文章站 2022-04-19 18:38:54
...

闰年

Problem Description
时间过得真快啊,又要过年了,同时,我们的人生也增长了一年的阅历,又成熟了一些。可是,你注意过今年是不是闰年呢,明年呢?

闰年
以上是闰年的计算方法的流程图,聪明的你能否通过编程计算任意给出的一个年份是否是闰年呢?相信这个问题你能很快解决掉。

Input
只有一个整数year,代表年份。

Output
如果是闰年输出Yes,否则输出No。

Sample Input
2000

Sample Output
Yes

#include <stdio.h> #include <stdlib.h> int main() { int year; scanf("%d",&year); if(year%4==0) if(year%100!=0) printf("Yes"); else if(year%400==0) printf("Yes"); else printf("No"); else printf("No"); return 0; } 

#include <stdio.h> int main() { int a,b; char y,x; scanf("%d%d%c",&a,&b,&y); //字符型变量y吃掉输入过程中的换行 scanf("%c",&x); if(x == '+') printf("%d",a + b); else if(x == '-') printf("%d",a - b); else if(x == '*') printf("%d",a * b); else if(x == '/') printf("%d",a / b); return 0; }