Pengulangan Menggunakan For
Posted by Budi Arieyanto | Posted in Borlant C++ | Posted on 03.40
#include<iostream.h>
#include<conio.h>
void main()
{
for(int i=1; i<=5; i++)
{
cout<< "Pengulangan Ke-" <<i<<endl;
}
getch();
}
#include<iostream.h>
#include<conio.h>
void main()
{
for(int i=1; i<=5; i++)
{
cout<< "Pengulangan Ke-" <<i<<endl;
}
getch();
}
© All Rights Reserved. Budi Arieyanto
Theme by : TheHostingFinder.com | Converted into Blogger Templates by Theme Craft
Comments (0)
Posting Komentar