Pages

Kamis, 17 Oktober 2013

DO_WHILE Perulangan Angka Genap

#include <iostream.h>
#include <conio.h>

void main()
{
 int ar;
 cout<<"PERULANGAN GENAP DENGAN DO-WHILE"<<endl;
 ar=0;
 do
 {
 ar+=2;
 cout<<ar;
 } while (ar<10);
 getch();
}

DO_WHILE Perulangan Angka Ganjil

#include <iostream.h>
#include <conio.h>

void main()
{
 int ar;
 cout<<"PERULANGAN BIL GANJIL DENGAN DO-WHILE"<<endl;
 ar=1;
 do
 {
 ar+=2;
 cout<<ar;
 } while (ar<9);
 getch();
}

DO_WHILE Perulangan Angka 1-9

#include <iostream.h>
#include <conio.h>

void main()
{
 int ar;
 cout<<"PERULANGAN 1-9 DENGAN DO-WHILE"<<endl;
 ar=0;
 do
 {
 ar+=1;
 cout<<ar;
 } while (ar<9);
 getch();
}

WHILE Perulangan Angka Genap

#include <iostream.h>
#include <conio.h>

void main()
{
 int ar;
 cout<<"PERULANGAN BIL GENAP DENGAN WHILE"<<endl;
 ar=2;
 while (ar<10)
 {
 cout<<ar;
 ar+=2;
 }
 getch();
}

WHILE Perulangan Angka Ganjil

#include <iostream.h>
#include <conio.h>

void main()
{
 int ar;
 cout<<"PERULANGAN BIL GANJIL DENGAN WHILE"<<endl;
 ar=1;
 while (ar<10)
 {
 cout<<ar;
 ar+=2;
 }
 getch();
}

WHILE Perulangan Angka 1-9

#include <iostream.h>
#include <conio.h>

void main()
{
 int ar;
 cout<<"PERULANGAN 1-9 DENGAN WHILE"<<endl;
 ar=1;
 while (ar<10)
 {
 cout<<ar;
 ar++;
 }
 getch();
}

FOR Perulangan Angka Ganjil

#include <iostream>
#include <conio.h>

void main()
{ int i;

//cout<<"Masukan batas bilangan yang ingin ditampilkan = ";cin>>n;
cout<<"PERULANGAN BILANGAN GANJIL COY"<<endl;
for (i=1;i<=10;i++) //...menampilkan angka berurutan lebih kecil samadengan n
if (i%2!=0) //...memilih bilangan ganjil atau bukan
cout<<i<<" ";
getch();
}

FOR Perulangan Angka Genap

#include <iostream.h>
#include <conio.h>

void main()
{
 int i;
cout<<"MENAMPILKAN BIL GENAP 1-10"<<endl;
cout<< "Bilangan genap : " << endl;
       for(i=1;i<=10;i++)
       {
       i=i+1;
       cout<<i;
       //if(i)cout << i << ", ";
       }
       getch();
}

FOR perulangan 1-9

#include <iostream.h>
#include <conio.h>

void main()
{
    int ar;
   cout<<"PERULANGAN BILANGAN DARI ANGKA 1 SAMPAI 10";
   cout<<endl;
   for (ar=1;ar<10;ar++)
   {
   cout<<ar;
   }
 getch();
}

Menghitung Luas bangun

#include <iostream.h>
#include <conio.h>

void home()
{
cout<<"|=========================================|"<<endl;
cout<<"|                                Nama  : Ayyub Rifai                           |"<<endl;
cout<<"|                                Nim   : 120103106                              |"<<endl;
cout<<"|=========================================|"<<endl;
cout<<"|                         PROGRAM PERHITUNGAN                  |"<<endl;
cout<<"|=========================================|"<<endl;
cout<<"|                                   PILIHAN KODE                             |"<<endl;
cout<<"|=========================================|"<<endl;
cout<<"|1. Menghitung luas segitiga                                                |"<<endl;
cout<<"|2. Menghitung luas segiempat                                            |"<<endl;
cout<<"|3. Menghitung luas lingkaran                                             |"<<endl;
cout<<"|4. Menghitung luas persegi panjang                                   |"<<endl;
cout<<"|=========================================|"<<endl;
};
void persegipanjang()
{
    float p, l, lp;
   cout<<"Masuukan ukuran panjang :";cin>>p;
   cout<<endl;
   cout<<"Masuukan ukuran lebar :";cin>>l;
   cout<<endl;
   lp=p*l;
   cout<<"Luas persegi panjang adalah :"<<lp;
};
void segitiga()
{
     float a, t, ls;
   cout<<"Masukkan ukuran alas segitiga : ";cin>>a;
   cout<<endl;
   cout<<"Masukkan ukuran tinggi segitiga : ";cin>>t;
   cout<<endl;
   ls = 0.5*a*t;
   cout<<"Luas segitiga adalah : "<<ls;
};
void segiempat()
{
    float s, ls;
   cout<<"Masukkan sisi segiempat : ";cin>>s;
   cout<<endl;
   ls=s*s;
   cout<<"Luas segiempat adalah : "<<ls;
};
void lingkaran()
{
    float jari, ll;
    cout<<"Masukkan jari-jari lingkaran : ";cin>>jari;
   cout<<endl;
   ll = 3.14*jari*jari;
   cout<<"Luas lingkaran adalah : "<<ll;
};
void main()
{
   home();
   int kode;
   cout<<"Masukkan pilihan anda : ";
   cin>>kode;
   cout<<endl<<endl;

   if (kode==1){segitiga ();}
    else if (kode==2){segiempat ();}
    else if (kode==3){lingkaran ();}
   else if (kode==4){persegipanjang ();}
getch();
}
 

(c)2009 TI Anti Pornografi. Based in Wordpress by wpthemesfree Created by Templates for Blogger