Stwórz program w DEV-C++, który będzie obliczał średnią arytmetyczną z liczb podanych przez użytkownika.
#include<iostream>using namespace std;int main(){ int n; double sum = 0; cout << "Podaj ilosc liczb..." << endl; cin >> n; for(int i = 0; i < n; i++){ int l; cin >> l; sum += l; } double odp = sum/n; cout << "Srednia to: " << odp << endl;}
" 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 n;
double sum = 0;
cout << "Podaj ilosc liczb..." << endl;
cin >> n;
for(int i = 0; i < n; i++){
int l;
cin >> l;
sum += l;
}
double odp = sum/n;
cout << "Srednia to: " << odp << endl;
}