#include
int main()//这里是主函数
{
/*
定义年份
*/
int year ;
year = 2017;
printf("this year is %d,year\n");//显示年份
printf("i am a student");//各位师兄师姐看到我有什么代码问题,及时告诉我,我会纠正下来 return 0;
}
#include <stdio.h>
int main()//这里是主函数
{
/*
定义年份
*/
int year ;
year = 2017;
printf("this year is %d,year\n",year);//显示年份 没有调用定义的year变量
printf("i am a student");
return 0;
}