• Напиши программу, которая

    в цикле принимает оценки

    стажёров, пока пользователь

    не введёт число

    вне диапазона [3; 5]. Нужно

    вывести средний балл

    (вещественное число).

Ответы 2

  • #include <iostream>

    #include <cmath>

    using namespace std;

    int main() {

    int rating;

    int count = 0;

    double sum = 0;

    while (true) {

    cout << "Please enter the intern's rating (3 - 5): ";

    cin >> rating;

    if (rating < 3 || rating > 5) {

    break;

    }

    count++;

    sum += rating;

    }

    double average = sum / count;

    cout << "The average rating is: " << average << endl;

    return 0;

    }

    • Автор:

      egorg6919
    • 1 год назад
    • 0
  • Или вот для пайтон

    def calculate_average_score(): scores = [] while True: estimate = float(input("Enter estimate: ")) if estimate < 3 or estimate > 5: break scores.append(estimate) return sum(scores) / len(scores) print(calculate_average_score())

    • Автор:

      egorg6919
    • 1 год назад
    • 0
  • Добавить свой ответ

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years