- menginputkan data yang diinginkan melalui papan ketik.
- proses mencari rata-rata daari jumlah inputan data.
- cetak rata-rata data.
#include <iostream>
#include <cstdlib>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int y,x,rata;
float jumlah;
jumlah =0;
y =1;
x =0;
while (!(x < 0)){
jumlah = jumlah + x;
cout<<"Data ke-"<<y<<" = ";
cin>>x;
y=y+1;
}
cout<<"Jumlah bilangan integer positif adalah "<<jumlah<<endl;
rata = jumlah /(y-2);
cout<<"Rata-ratanya adalah "<<jumlah<<" / "<<(y-2)<<" = "<<rata<< endl;
return 0;
}
0 komentar:
Posting Komentar