在我行程结束时,我已经:
cout<<"
any key to continue or Ctrl+Z to exit.";
这使得用户能够继续输入数据,或者通过硬盘(CtrlZ退出。 当用户决定继续输入数据时,我谨隐瞒所报的关键。
我不想让压力的钥匙出现在用户施加压力时,不要把任何钥匙留在 lo中。 我如何能够这样做? 我正在使用Dev-C++。 我的职能守则如下。
void student::read()
{
char response; ofstream OS ("student.dat", ios::app);
do
{
cout<<"Name: ";
cin>>name;
cout<<"Age: ";
cin>>age;
cout<<"GPA: ";
cin>>GPA;
//calling writefile to write into the file student.dat
student::writefile();
cout<<"
any key to continue or Ctrl+Z to exit."<<endl<<endl;
cin>>response;
cin.ignore();
}
while(cin); //Ctrl+Z to exit
}