Contoh program do-while :
// Contoh program do-while
#include
<iostream.h>
#include
<conio.h>
void
main()
{
clrscr();
int a;
a = 0;
do
{
cout<<" Kog Di Ulang
– ulang "<<endl;
a++;
}
while (a < 9);
getch();
}
No comments:
Post a Comment