怎样改正错误
error:statement missing; in function #include(stdio.h)
main()
{int a,b,c;
scanf("%d%d",&a,&b);
c=a+b;printf("%d",c);
}
----------------解决方案--------------------------------------------------------
#include<stdio.h>
main()
{
int a,b,c;
scanf("%d,%d",&a,&b);
c=a+b;
printf("%d\n",c);
}
没大错误啊!。。。无语了
----------------解决方案--------------------------------------------------------
"stdio.h"或<stdio.h>看看书啊
----------------解决方案--------------------------------------------------------
呵呵...楼上正解
----------------解决方案--------------------------------------------------------
恩 不错的习惯!
----------------解决方案--------------------------------------------------------
谢谢了,楼上各位!
----------------解决方案--------------------------------------------------------
#include(stdio.h)
无语了!
----------------解决方案--------------------------------------------------------
我是不是要学一下那个stdio.h,老是出现类似的问题
----------------解决方案--------------------------------------------------------
我都笑了看那个(stdio.h)
----------------解决方案--------------------------------------------------------
函数内部变量建议赋值初始化
----------------解决方案--------------------------------------------------------