INPUT : 4
OUTPUT : *
**
***
****
***
**
*
Berikut entuk Flowchart denga menggunakan Perulangan for atau Nested For
Keterngan Flowchart :
- ada perbedaan penulisan perulngan foryaitu, jika perulangan bernilai -- ditulis for x down to x
- jika berulangan bernilai ++ bentuk penulisan flowchartadalah for x to x
Source Codenya adalah Sebagai Berikut :
#include <iostream.h>
#include <conio.h>
main ()
{
int i,j,n ;
cout <<" Masukan Nilai : " ;
cin >> n ; cout << endl ;
for (i=1 ;i <=n; i++)
{
for (j =1; j <=i; j++)
cout << "*" ;
cout << endl ;
}
for (i=1 ;i <=n; i++)
{
for (j =1; j <= n-i; j++)
cout << "*" ;
cout << endl ;
}
getch ();
}
Hasil Program Running Dengan1 Inputan :