#include<stdio.h>
void main()
{unsigned int year,leap;<br>printf("enter year:");<br>scanf("%d",&year);<br>if(year%400==0)<br>leap=1;<br>else<br>{if (year%4==0&&year%100!=0)<br>leap=1;<br>else leap=0;<br>}
if(leap==1)printf("%d:is a leap year.",year);
else printf("%d is not a leap year.",year);
unsigned int month,day;
printf("enter month:");
scanf("%d",&month);
printf("%d\n",day);
} 1 warning(s) warning C4700: local variable 'month' used without having been initialized
ibeautiful
慕森卡
相关分类