Latihan di Modul C++ bab 5.7 no 1 halaman 87
screenshoot running programnya sbb :
#include <stdio.h>
#include <conio.h>
#include <iostream.h>
void main()
{
int awal=2;
int hasil =0;
clrscr();
cout<<endl<<endl;
do
{
hasil = hasil +awal ;
cout<<awal;
if (awal<20)
cout<<" + ";
else
cout<<" = ";
awal+=2;
hasil = hasil;
}
while(awal<=20);
cout<<hasil;
getch();
}
Kalo untuk yang no 2, tinggal merubah nilai awal = 1, maka hasil running programnya sebagai berikut :
Oke ???
Tidak ada komentar:
Posting Komentar