哭啊:如何在编译C程序时,让DOS窗口停下来,给我看个清楚

时间:2022-09-02 18:48:56
我在编译C程序时,DOS窗口一闪既过,我看不到结果啊。
我已经将c:winnt下的_default.pif的  退出程序时关闭窗口  前 勾 去掉了
但是 命令行 _default.bat 文件硬盘里没有
同样在c:winnt\system32下krnl386.pif 存在同样问题!
请帮忙解决!

9 个解决方案

#1


你可以在C源程序里面加上:getch();

#2


按f5键或者f6键,具体哪个忘了,一个个试试吧,从f1到f12

#3


在头文件+ #include <stdlib.h>
在return 0;前加 System("pause");

#4


在最后加上一句getchar();
或者加一句输入的话
cin>>i;

这样程序就会停在那里了!

#5


#include <conio.h>
#include <iostream.h>
void main(void)
{
    for(int i=0;i<10;i++)
    {
         cout<<"i = "<<i<<"\n";
         cout<<"Press any key to next..";
         getch();    //暂停,按任意键继续  
    }
}

试一下上面的程序,就知道了

#6


加上getchar();
或者按ALT+F5

#7


cin.get()

#8


getchar();
回车才能关闭

#9


在COMMAND方式下运行

#1


你可以在C源程序里面加上:getch();

#2


按f5键或者f6键,具体哪个忘了,一个个试试吧,从f1到f12

#3


在头文件+ #include <stdlib.h>
在return 0;前加 System("pause");

#4


在最后加上一句getchar();
或者加一句输入的话
cin>>i;

这样程序就会停在那里了!

#5


#include <conio.h>
#include <iostream.h>
void main(void)
{
    for(int i=0;i<10;i++)
    {
         cout<<"i = "<<i<<"\n";
         cout<<"Press any key to next..";
         getch();    //暂停,按任意键继续  
    }
}

试一下上面的程序,就知道了

#6


加上getchar();
或者按ALT+F5

#7


cin.get()

#8


getchar();
回车才能关闭

#9


在COMMAND方式下运行