Bentuk Umum :
For (inisialisasi; syarat pengulangan; pengubah nilai)
pemberian nilai awal -> Inisialisasi
mengatur naik/turun -> Pengubah Nilai
Contoh :
for (a =0; a<=10; ++a) -> perulangan positif (+1)
for (a =0; a<=10; a+=2) -> perulangan positif (+2)
for (a=10; a>=0; --a) -> perulangan negatif
Listing for Menurun:
#include <stdio.h>
#include <conio.h>
#include <iostream.h>
main()
{
int i;
for (i=10; i>0; i--)
cout<<"\n bilangan: "<<i;
getch(); }
Output :
Listing for Menaik:
#include <stdio.h>
#include <conio.h>
#include <iostream.h>
main()
{
int i;
for (i=10; i>0; i--)
cout<<"\n bilangan: "<<i;
getch(); }
Output :
0 comments:
Post a Comment