1. 程式人生 > >VS 2017 執行完程式後迅速關閉視窗(不讓視窗一閃而過的方法)——解決辦法

VS 2017 執行完程式後迅速關閉視窗(不讓視窗一閃而過的方法)——解決辦法

VS 2017中 程式執行完後,希望視窗繼續保留。

方法一

在 return 0; 語句前面新增一句:system("pause");  下面是測試程式;

#include<iostream>
int main()
{
	using namespace std;
	cout << "Come up and C++ me some time.";
	cout << endl;
	cout << "You wont't regert it!" << endl;
	system("pause"); 
	return 0;
}

執行結果:

方法二

在 return 0; 語句前面新增一句:cin.get();  下面是測試程式;

#include<iostream>
int main()
{
	using namespace std;
	cout << "Come up and C++ me some time.";
	cout << endl;
	cout << "You wont't regert it!" << endl;
	cin.get();
	return 0;
}

執行結果: