Pengulangan Dengan While
Posted by Budi Arieyanto | Posted in Borlant C++ | Posted on 02.58
#include <iostream.h>
#include <conio.h>
void main()
{
int i;
i=10;
while(i>0)
{
cout<<i<<".Pengulangan Menggunakan While"<<endl;
i--;
}
getch();
}


Comments (0)
Posting Komentar