Di bawah ini bentuk dari perulangan (LOOP) :
Di bawah ini adalah program c++nya :
#include <iostream>
#include <string>
using namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
int n;
int rata;
int x;
int i;
int jumlah;
raptor_prompt_variable_zzyz ="n =";
cout << raptor_prompt_variable_zzyz << endl;
cin >> n;
jumlah =0;
i =1;
while (!(i>n))
{
raptor_prompt_variable_zzyz ="x =";
cout << raptor_prompt_variable_zzyz << endl;
cin >> x;
jumlah =jumlah+x;
i =i+1;
}
rata =jumlah/n;
cout << jumlah << endl; cout << rata << endl;
system("pause");
return 0;
}
#selamat mencoba :)
Tidak ada komentar:
Posting Komentar