为什么我的菜单不能正常工作c ++ case switch

时间:2015-11-04 00:04:41

标签: c++ menu

enter image description here

我只是从c ++开始,我的班级作业有问题 我希望一个简单的问题 我知道我在菜单中只有2种方法1和2,但它不能同时用于第一和第二种方法吗? 我的代码` [链接] http://pastebin.com/b8CRUJbw

1 个答案:

答案 0 :(得分:0)

cin>>tester1; 
while(!cin) { // If integers are not inputted
    cin.clear(); // Clear the error flag and stream buffer
    cin.sync();
    cout << "Please enter an integer!!" << endl;
    cout << " >>";
    cin>>tester1; // Input again
}
array[counter].registry=tester1;