Warning: Use of undefined constant JMF_THEMER_MODE - assumed 'JMF_THEMER_MODE' (this will throw an Error in a future version of PHP) in /informatyka/plugins/system/djjquerymonster/djjquerymonster.php on line 210
Instrukcja iteracyjna. Suma i średnia podanych liczb.
Drukuj

Opis programu

Kod programu:


#include <iostream>
using namespace std;

int main() {
	int ilosc, liczba;
	float suma, srednia;
	suma=0;
	cout << "ilosc liczb: "; cin >> ilosc;
	
	for (int i=0; i<ilosc; i++) {
		cout << "podaj liczbe nr " << i+1 << ": ";
		cin >> liczba;
		suma=suma+liczba;
	}
	cout << "\n suma = " <<  suma;
	srednia=suma/ilosc;
	cout << "\n srednia = " << srednia;
	return 0;
}


Użycie kodu: