Perulangan While ( C++ )

Masih mempelajari perulangan dengan program C++, tapi kali ini kita pakai while.
nah berikut adalah program perulangan sederhana dengan menggunakan while. selamat mencoba

#include
#include

void main()
{
char abjad;
clrscr();
cout<< "PROGRAM PERULANGAN WHILE A-Z \n" ;
cout<< "---------------------------- \n" ;
abjad='A';
while(abjad<='Z')
{
cout<<<("\n");
abjad++;
}
}


Kalau di Run hasilnya :

PROGRAM PERULANGAN WHILE A-Z
----------------------------
A
B
C
...
Z
Berikut contoh untuk Program Perulangan While-Do,

#include
#include


void main()
{
char abjad;
clrscr();
cout<<"PROGRAM PERULANGAN WHILE-DO Z-A \n";
cout<<"------------------------------- \n";
abjad='Z'; do { cout<
<<("\n"); abjad-=1; } while(abjad>='A');
}

Kalau di Run Hasilnya :

PROGRAM PERULANGAN WHILE-DO Z-A
-------------------------------
z
y
x
...
A



Program Perulangan For (C++)

Lagi belajar pemrograman C++ neh, baru bisa buat script2 seperti in
Program berikut menggunakan Turbo C++ 4.5

#include
main()
{
printf (" PROGRAM LOOPING For \n");
printf ("-------------------------------\n");
printf ("\n");

{
int baris=1;
int maks=6;
int kolom=1;
int hasil_kali;
for (baris=1; baris<=maks; baris++)
{
hasil_kali=kolom*baris+(baris-1);
printf("%2d \n",hasil_kali);
}
}

}


kalau di Run hasilnya :

PROGRAM LOOPING FOR
-----------------------------

1
3
5
9
7
11


Bagi yang sudah master mohon bimbingannya, saran dan kritik pastinya
Thanks
 

Usage Rights

DesignBlog BloggerTheme comes under a Creative Commons License.This template is free of charge to create a personal blog.You can make changes to the templates to suit your needs.But You must keep the footer links Intact.