标签:bsp nbsp amp return div res 不能 else ret
#include <stdio.h> int main(){ /* 闰年: 能被4整除, 不能被100整除; 或能被400整除 */ int result; int year; scanf("输入年份数值: %d", &year); if (0 != year % 4) { printf("%d不是闰年", year); } else { if (0 == year % 400) { printf("%d是闰年", year); } else if (0 != year % 100) { printf("%d是闰年", year); } else { printf("%d不是闰年", year); } } return 0; }
标签:bsp nbsp amp return div res 不能 else ret
原文地址:https://www.cnblogs.com/m-yb/p/11427596.html