----------------解决方案--------------------------------------------------------
好像是我的编译器出问题了 我用最简单的程序也出现两个error
----------------解决方案--------------------------------------------------------
用我写的那个可以运行不?
----------------解决方案--------------------------------------------------------
你的学号有多长,考虑是否要用long型
----------------解决方案--------------------------------------------------------
#include <stdio.h>
main()
{
long a;
int b;
char c[10];
printf("你的学号:");
scanf("%ld",&a);
printf("你的年龄:");
scanf("%d",&b);
printf("你的名字:");
fflush(stdin); //清除缓存
scanf("%s",c);
printf("你的学号:%ld\n年龄:%d\n名字:%s\n",a,b,c);
}
----------------解决方案--------------------------------------------------------
好象是引号错了,应该改成半角下的
----------------解决方案--------------------------------------------------------