我不是C ++的新手,而是按照cin上的指南操作,他使用getline()函数对该程序进行等待,直到客户端按Enter键以关闭该程序为止,该程序对他有效,但是我放下程序后,我的程序仍然立即关闭第一次输入。(我不想用户键入某些内容,请不要将其标记为重复!)
#include <iostream>
#include <filesystem>
#include <string>
using namespace std;
int main()
{
string santype;
cout << "What type of sandwhich you want kid?" << endl;
cin >> santype;
cout << "Creating " << santype << " Sandwhich" << endl;
cout << "Press Enter To Exit..";
getline(cin, santype);
}