system(“exit”)不能用的
void WaitUser() /*等待用户操作*/{
int iInputPage=0;
cout << "任意键返回主菜单(除Q外),q退出" << endl;
char choice[256];
cin >>choice;
if(choice[0]=='q')
system("exit"); /*调用系统函数退出*/
}
为什么这个system exit好像失灵?(菜单是个死循环 我想用这个exit退出系统 谁知道怎么弄求解