Advertisement
satriafu5710

Jumlah & Rata Nilai Mahasiswa C++

Dec 5th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int n;
  7.     float angka, jumlah;
  8.  
  9.     cout << "\t Jumlah dan Rata2 Bilangan \n";
  10.  
  11.     cout << "\n Masukkan Jumlah Data : ";
  12.     cin >> n;
  13.     cout << endl;
  14.  
  15.     for (int i = 1; i <= n; i++)
  16.     {
  17.         cout << " Data Ke " << i << " : ";
  18.         cin >> angka;
  19.  
  20.         jumlah += angka;
  21.     }
  22.  
  23.     cout << "\n Jumlahnya    : " << jumlah;
  24.     cout << "\n Rata-ratanya : " << jumlah / n;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement