Breaking News
Loading...
Selasa, 22 Maret 2016

Tugas 4.4

Menghitung Rata - Rata Bilagan Integer Positif dengan C++ dan Raptor :

Dev C++nya :

#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 n=1,jumlah=0,x;
    float rata;
    cout<<"menghitung Rata - Rata Integer Positif \n";
    cout<<"Masukkan jumlah data ="; cin>>n;
   
    for(int i=1; i<=n; i++){
    cout<<"data ke-"<<i<<" =";cin>>x;
    jumlah=jumlah+x;
    }
    rata=(float)jumlah/n;
    cout<<"rata-rata="<<rata;
return 0;
}

Ini Hasil Compilenya :

 Ini Raptornya :












0 komentar:

Posting Komentar

Copyright © 2014 My Blog My Adventure All Right Reserved