Breaking News
Loading...
Kamis, 14 April 2016

Menghitung Total Mahasiswa Dengan Array

Dev C++ :


#include<iostream>
#include<conio.h>
using namespace std;
main()
{ int i,total,jum_mhs[7]={40,37,38,34,39,36,34};
 total=0;
 for(i=1;i<7;i++)
 { cout<<"Jumlah Mhs Kelas "<<(i)<<" : "
 <<jum_mhs[i]<<endl;
 total+=jum_mhs[i];
 }
 cout<<"-------------------------"<<endl;
 cout<<"Jumlah Total mahasiswa = "<<total;
 getch();
}

Hasilnya :


0 komentar:

Posting Komentar

Copyright © 2014 My Blog My Adventure All Right Reserved