C语言,判断是否闰年

2024年11月16日 22:52
有5个网友回答
网友(1):

if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) { //输出某年是闰年 System.out.println (year + "年是闰年"); } else { //输出某年是平年 System.out.println (year + "年是平年"); } 1。能被4整除而不能被100整除。(如2004年就是闰年,1800年不是。) 2。能被400整除。(如2000年是闰年)

网友(2):

把判断的那行直接写在return后面,就可以封装成一个函数了。不过不建议这么做,没有太大的必要性,反而增加了函数寻址、压栈、出栈的时间消耗
麻烦采纳,谢谢!

网友(3):

按你的需求,可以用宏替换来做(当然也可以写成函数) #define isLeap(x) ((x) % 4 == 0 ? (x) % 100 == 0 ? (x) % 400 == 0 ? 1 : 0 : 1 : 0) int main(void) { int i = 0; for (i = 2000; i <= 2050; i ++) { if (isLeap(i)) { printf("%ld年是闰年\n", i); } else { printf("%ld年不是闰年\n", i); } } }

网友(4):

#include main() { int y; scanf("%d",&y); if(((y%4==0)&&(y%100!=0))||((y%100==0)&&(y%400==0))) { printf("闰年"); } else { printf("不是闰年"); } }

网友(5):

判断
闰年
的方法是:
①能被4
整除
,但不能被100整除的年份都是闰年;
②能被100整除,同时又能被400整除的年份也是闰年。
你的肯定有问题,你试试2012