Wednesday, May 1, 2013

LATIHAN Koding C++

Posted By: Angga - 5:24 AM

Share

& Comment

-KODING KASIR SEDERHANA

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

main()
{
int belanja, bayar;
cout << "inputkan total belanja : ";
cin  >> belanja;

if(belanja>100000)
{
bayar=belanja*90/100;
   cout << "anda mendapatkan diskon " << belanja-bayar << endl;
}
else
{
bayar=belanja;
}
cout << "total yang harus anda bayar adalah " << bayar;

   getch();
}



-KODING Menu Mencari Volume Kubus, Luas Lingkaran, dan Volume Silinder

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

main()
{
int pilih;
float sk, jl, js, ts, hasil;
cout << "\nMenu :\n";
cout << "1. Volume Kubus\n";
cout << "2. Luas Lingkaran\n";
cout << "3. Volume Silinder\n\n";
cout << "Pilih Salah Satu : ";
cin >> pilih;
if (pilih==1)
{
cout << "\nVolume Kubus\n";
cout << "Inputkan Panjang Sisi : ";
cin >> sk;
hasil = sk*sk*sk;
cout << "Volume Kubusya Adalah " << hasil;
}
else if (pilih==2)
{
cout << "\nLuas Lingkaran\n";
cout << "Inputkan Panjang Jari-jari : ";
cin >> jl;
hasil = jl*jl*22/7;
cout << "Luas Lingkarannya Adalah " << hasil;
}
else if(pilih==3)
{
cout << "\nVolume Silinder\n";
cout << "Menu :\n";
cout << "1. Volume Silinder Dengan Tutup\n";
cout << "2. Volume Silinder Tanpa Tutup\n\n";
cout << "Pilih Salah Satu : ";
cin >> pilih;
if (pilih==1)
{
cout << "\nVolume Silinder Dengan Tutup\n";
cout << "Inputkan Panjang Jari-jari : ";
cin >> js;
hasil = js*js*22/7;
cout << "Volume Silindernya Adalah " << hasil;
}
else if (pilih==2)
{
cout << "\nVolume Silinder Tanpa Tutup\n";
cout << "Inputkan Panjang Jari-jari : ";
cin >> js;
cout << "Inputkan Panjang Tinggi : ";
cin >>ts;
hasil = js*js*ts*22/7;
cout << "Volume Silindernya Adalah %.2f" << hasil;
}
else
{
cout << "Menu Tidak Tersedia";
}
}
else
{
cout << "Menu Tidak Tersedia";
}

getch();
}


-KODING BELANJA MEMAKAI DISKON

#include <stdio.h>
#include <conio.h>

main ()

{
int pulsa,diskon;
      printf ("BELI PULSA DIATAS 5000 DAPAT DISKON \n \n \n");
printf ("TOTAL HARGA PULSA:");
scanf ("%d",&pulsa);
if (pulsa>=10000)

diskon =(0.1)*(pulsa);

   {

printf ("anda mendapat diskon %d \n",diskon);
   }

   {
    printf ("total yang harus anda bayar :%d \n \n \n" , (diskon)-(pulsa));

   }

   {

      printf   ("TERIMAKASIH");

   }

    getch ();

   }

About Angga

Organic Theme. We published High quality Blogger Templates with Awesome Design for blogspot lovers.The very first Blogger Templates Company where you will find Responsive Design Templates.

0 comments:

Post a Comment

Copyright © JUST FOR FUN

Designed by Templatezy