Pengulangan bilangan genap dari 20 sampai dengan 120 dengan FOR,WHILE, DO WHILE
dengan For :
#include<stdio.h>
main()
{
int bil;
clrscr();
for ( bil =20; bil <= 120; bil++ )
{
printf("%5d", bil); bil = bil + 1;
}
getch();
}
dengan While :
#include<stdio.h>
main()
{
int bil;
clrscr();
bil = 20;
while(bil <= 120)
{
printf("%5d", bil); bil = bil + 2;
}
getch();
}
dengan Do While :
#include<stdio.h>
main()
{
int bil;
clrscr();
bil = 20;
do
{
printf("%5d", bil);
bil = bil + 2;
}
while ( bil <= 120 );
getch();
}
Membuat segitiga tangga ( Baris x Kolom )
#include <stdio.h>
#include <conio.h>
main ()
{
int baris, kolom, hasil_kali;
clrscr();
baris = 1;
while (baris <= 5)
{
kolom = 1;
while (kolom <= baris)
{
hasil_kali = baris * kolom;
printf ("%3d", hasil_kali);
kolom ++;
}
baris ++;
printf("\n");
}
getch();
}
Membuat segitiga tangga terbalik ( Baris x Kolom )
#include <stdio.h>
#include <conio.h>
main ()
{
int baris, kolom, hasil_kali, time;
clrscr();
baris = 1;
time = 5;
while (baris <= 5)
{
kolom = 1;
while (kolom <= time)
{
hasil_kali = baris * kolom;
printf ("%3d", hasil_kali);
kolom ++;
}
baris ++;
time--;
printf("\n");
}
getch();
}
dengan For :
#include<stdio.h>
main()
{
int bil;
clrscr();
for ( bil =20; bil <= 120; bil++ )
{
printf("%5d", bil); bil = bil + 1;
}
getch();
}
dengan While :
#include<stdio.h>
main()
{
int bil;
clrscr();
bil = 20;
while(bil <= 120)
{
printf("%5d", bil); bil = bil + 2;
}
getch();
}
dengan Do While :
#include<stdio.h>
main()
{
int bil;
clrscr();
bil = 20;
do
{
printf("%5d", bil);
bil = bil + 2;
}
while ( bil <= 120 );
getch();
}
Membuat segitiga tangga ( Baris x Kolom )
#include <stdio.h>
#include <conio.h>
main ()
{
int baris, kolom, hasil_kali;
clrscr();
baris = 1;
while (baris <= 5)
{
kolom = 1;
while (kolom <= baris)
{
hasil_kali = baris * kolom;
printf ("%3d", hasil_kali);
kolom ++;
}
baris ++;
printf("\n");
}
getch();
}
Membuat segitiga tangga terbalik ( Baris x Kolom )
#include <stdio.h>
#include <conio.h>
main ()
{
int baris, kolom, hasil_kali, time;
clrscr();
baris = 1;
time = 5;
while (baris <= 5)
{
kolom = 1;
while (kolom <= time)
{
hasil_kali = baris * kolom;
printf ("%3d", hasil_kali);
kolom ++;
}
baris ++;
time--;
printf("\n");
}
getch();
}