Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int liczba;
- int suma = 0;
- int ilosc = - 1;
- cout << "Podaj liczby, na koniec wpisz 0." << endl;
- while ( liczba != 0)
- {
- cin >> liczba;
- suma = liczba + suma;
- ilosc = ilosc + 1;
- }
- cout << "Srednia arytmetyczna liczb to " << 1.0 * suma / ilosc << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment