04. 数据输入2

创建日期:2024-07-14
更新日期:2025-02-01

cingolf.cpp

#include <iostream>

const int Max = 5;
int main()
{
    using namespace std;
    int golf[Max];
    cout << "Please enter your golf scores.\n";
    cout << "You muse enter " << Max << " rounds.\n";
    int i;
    for (i = 0; i < Max; i++)
    {
        cout << "round #" << i + 1 << ": ";
        while (!(cin >> golf[i]))
        {
            cin.clear();
            while (cin.get() != '\n')
            {
                continue;
            }
            cout << "Please enter a number: ";
        }
    }
    double total = 0.0;
    for (int i = 0; i < Max; i++)
    {
        total += golf[i];
    }
    cout << total / Max << " = average score "
         << Max << " rounds\n";
}