PROGRAM & RAPTOR MENCARI RATA-RATA DARI SEDERET NILAI
12.49
By
Unknown
KASUS 6
0
komentar
ALGORITMA
DEV C++
#include <iostream>
#include <string>
using namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
int i;
int n;
int jumlah;
int rata;
int A[20];
A[20] = 0;
i =1;
jumlah =0;
rata =0;
raptor_prompt_variable_zzyz ="Masukan N";
cout << raptor_prompt_variable_zzyz << endl;
cin >> n;
while (!(i>n))
{
raptor_prompt_variable_zzyz ="Masukan A";
cout << raptor_prompt_variable_zzyz << endl;
cin >> A[i];
jumlah =jumlah+A[i];
i =i+1;
}
rata =jumlah/n;
cout<<"Rata-ratanya adalah : "<<rata;
return 0;
}
RAPTOR :
Deklarasi
i, jumlah : integer
Deskripsi
jumlah = 0
for i = 1 to n do
jumlah = jumlah + x[i]
endfor
rata jumlah/n
DEV C++
#include <iostream>
#include <string>
using namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
int i;
int n;
int jumlah;
int rata;
int A[20];
A[20] = 0;
i =1;
jumlah =0;
rata =0;
raptor_prompt_variable_zzyz ="Masukan N";
cout << raptor_prompt_variable_zzyz << endl;
cin >> n;
while (!(i>n))
{
raptor_prompt_variable_zzyz ="Masukan A";
cout << raptor_prompt_variable_zzyz << endl;
cin >> A[i];
jumlah =jumlah+A[i];
i =i+1;
}
rata =jumlah/n;
cout<<"Rata-ratanya adalah : "<<rata;
return 0;
}
RAPTOR :
0 komentar: