#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 <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> 他更不行啊。
----------------解决方案--------------------------------------------------------