Pengulangan Menggunakan For

Posted by Budi Arieyanto | Posted in | 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();
 }

Comments (0)

Posting Komentar