1. 程式人生 > >VS 2017 C++ 顯示螢幕視窗輸入,並顯示螢幕輸出

VS 2017 C++ 顯示螢幕視窗輸入,並顯示螢幕輸出

使用 cin >>  Variable name;//從鍵盤輸入字元

如果使用 一個 cin.get(); 在輸入字元後,螢幕視窗會消失。

這時候,需要兩個 cin.get();  語句

如下程式所示:

#include<iostream>
int main()
{
	using namespace std;
	int carrots;

	cout << "How many carrots do you have?" << endl;
	cin >> carrots; // C== input 從視窗中獲取輸入
	cout << "Here are two more. ";
	carrots = carrots + 2;

	cout << "Now you have " << carrots << " carrots."<< endl;

	cin.get(); //讀取輸入 螢幕顯示,按Enter鍵讀取輸入
	cin.get(); //程式暫停 螢幕顯示,直到按Enter鍵
	return 0;
}

執行結果: