求求大家?guī)蛶臀遥?/h1>
inclube<stdio.h>
int?main()
{
????int?year?=2014
????if(year?%4?==0?&&?year?%100?!=0?||year?%400?==0)
????{
????printf("今年是閏年");
????}
????else
????{
????printf("今年是平年");
????}
????return?0
????}
inclube<stdio.h> int?main() { ????int?year?=2014 ????if(year?%4?==0?&&?year?%100?!=0?||year?%400?==0) ????{ ????printf("今年是閏年"); ????} ????else ????{ ????printf("今年是平年"); ????} ????return?0 ????}
2020-04-06
? inclube<stdio.h>? ? ? ??include<stdio.h>?
? ?4.? ? int year =2014? ? ? ? ? ? int year = 2014;
? ?13.? return 0? ? ? ? ? ? ? ? ? ? ? ?return0;
剛學(xué) 不是很懂-.-?