Friday, October 25, 2013

Nested For

Perulangan for di dalam perulangan for lainnya.
Bentuk Umum :
For (inisialisasi; syarat pengulangan; pengubah nilai)
{
For (inisialisasi; syarat pengulangan; pengubah nilai)
{
perintah ;
}
}

Contoh Program Menggunakan Nested-For:
#include <stdio.h>
#include <conio.h>
#include <iostream.h>
main()
{ int i, j;
for (i=1; i<=5; i++)
{ cout<<endl;
for (j=1; j<=i; j++)
cout<<"*";}

getch(); }

Outputnya :


0 comments:

Post a Comment