/* Note:Your choice is C IDE */
#include "stdio.h"
void main()
{int year,leap;
scanf("%d",&year);
if(year%4==0)
{
if(year%100==0)
{
if(year%400==0)
leap=1;
else
leap=0;
}
else
leap=1;
}
else
leap=0;
if(leap)
printf("%d is leap year!\n",year);
else
printf("%d is not leap year!\n",year);
printf("ID:2013304129\n");
}总结:1、编写C语言程序时应注意程序的包含关系,避免把程序写成“豆腐块”。
2、printf输出时直接写变量名,不用再写取地址符号“&”。
3、编写C语言程序需要有耐心细心。