#include <iostream>
const int Max = 5;
int main() {
using namespace std;
int golf[Max];
cout << "Please enter your golf scores.\n";
int i = 0;
for (i = 0; i < Max; i++) {
cout << "round #" << i + 1 << ":";
while (!(cin >> golf[i])) { //判断输入是否是规定的类型
cin.clear(); //重置cin
while (cin.get() != '\n') //使用cin.get()删除错误输入知道将换行符读到位置
continue;
cout << "Please enter a number: "; //提醒重新输入
}
}
system("pause");
return 0;