Tugas 4.3
Menghitung Rata-rata dengan perulangan di dalam Dev C++ dan Raptor :Dev C++ :
#include <iostream>
/* 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 i, n, jumlah, x;
float rata;
cout<<"Banyak Data : "; cin>>n;
jumlah=0;
for (i=1; i<=n; i++){
cout<<"Data ke "<<i<<" : "; cin>>x;
jumlah +=x;
}
rata=(float)jumlah/n;
cout<<"Rata-rata = "<<rata;
return 0;
}
Ini hasil Compilenya :
Ini Raptornya :
0 komentar:
Posting Komentar