为什么我用Dev-C++编了个程序到最后去运行不了呢?那个system(“pause”)该怎么加啊?
展开全部
在return 0;之前加上system("pause");,这是我调试程序一贯的作风,当然了,你想在哪里pause就可以在哪里pause,如果不喜欢那一行“请按任意键继续...”的话推荐使用<conio.h>中的getch();。例:
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
cout<<"This is a test program."<<endl;
getch();
cout<<"Hello World!"<<endl;
system("pause");
return 0;
}
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
cout<<"This is a test program."<<endl;
getch();
cout<<"Hello World!"<<endl;
system("pause");
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询