当前位置: 代码迷 >> C语言 >> 程序出错了,改一下
  详细解决方案

程序出错了,改一下

热度:300   发布时间:2007-06-10 09:12:14.0
程序出错了,改一下

#include <stdlib.h>
#include <conio.h>
#include <stdio.h>

main()
{
int i;

clrscr(); // clear screen
textmode(0x00);

for(i=0;i<10;i++)
{
if(i==5) exit(0);
else
{
clrscr();
printf("%d",i);
getchar();
}
}

getchar();
return 0;
}


----------------解决方案--------------------------------------------------------
添加 #include <system.h> 看看.
你的编译器是 TC 吧,否则不行.

----------------解决方案--------------------------------------------------------
编译器有问题吧,我的可以运行
----------------解决方案--------------------------------------------------------

程序代码:
#include <stdlib.h>
#include <conio.h>
#include <stdio.h>

main()
{
int i;

clrscr(); /* clear screen*/
textmode(0x00);

for(i=0;i<10;i++)
{
if(i==5) exit(0);
else
{
clrscr();
printf(\"%d\",i);
getchar();
}
}
}
TC里没有那种注释方式,

[此贴子已经被作者于2007-6-10 11:25:42编辑过]


----------------解决方案--------------------------------------------------------

我是在C++ 6.0里面运行的阿。
添加 #include <system.h> 他更不行啊。


----------------解决方案--------------------------------------------------------
  相关解决方案