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



0 komentar:

 

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.