Wednesday, December 1, 2010
C++
Program Perulangan (For, While & Do..While)
#include <iostream.h>
#include <conio.h>
int main()
{
int jumlah;
cout << "Masukan Jumlah Perulangan :"; cin >>jumlah;
for (int i=0; i<jumlah; i++) {
cout <<i<< "Halo Perulanga Dengan For";
cout << endl;
}
cout << endl;
int n=0;
while (n<jumlah) {
cout << "Halo Perulngan Dengan While";
cout << endl;
n++;
}
cout << endl;
int m=0;
do{
cout << "Halo Perulangan Dengan Do & While";
cout << endl;
m++;
}
while(m<jumlah);
getch();
}
0 Response to " Program Perulangan (For, While & Do..While) "
Post a Comment