Witam prosze o napisanie programu w c++: program wczytuje liczby całkowite az średnia arytmetyczna podanych liczb przekroczy 100.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int main(){
int srednia = 0;
int podana, i;
for (i = 1; ; i++){
cout << "Podaj liczbe: ";
cin >> podana;
srednia = (podana + srednia) / i;
if (srednia >= 100) break;
}
cout << "srednia powyzej 100 !";
getchar();
getchar();
return 0;
}
Przykład działania:
Podaj liczbe: 10
Podaj liczbe: 10
Podaj liczbe: 10
Podaj liczbe: 50
Podaj liczbe: 459
Podaj liczbe: 4444
srednia powyzej 100 !
Kod pod linkiem:
http://wklej.org/id/967138/