c1010问题怎么解决 谢谢
#include <stdio.h>int main(void)
{
int cows,legs;
printf ("How many cow legs did you count?\n");
scanf("%d",&legs);
cows = legs / 4;
printf ("That implies there are %d cows.\n",cows);
return 0;
}
fatal error C1010: unexpected end of file while looking for precompiled header directive
执行 cl.exe 时出错.
这个是书上的代码,应该没错的。
今天在网上复制的代码也是这个错误。 哎
[ 本帖最后由 q619748128 于 2011-11-14 21:23 编辑 ]