7.
Coddingan Program sederhana
untuk menghitung luas dan keliling. Menggunakan Borland C++
#include<stdio.h>
#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
#include<windows.h>
#include<stdlib.h>
main()
{
a:
clrscr();
char pilihan;
int
pilih,menu,panjang,lebar,luasp,alas,tinggi,luass,sisi1,sisi2,luasb,kelb,yt;
cout<<"================================================================================"<<endl;
cout<<"--------------------------------------------------------------------------------"<<endl;
cout<<"\t\t\t\tKUIS
ALGORITMA"<<endl;
cout<<"--------------------------------------------------------------------------------"<<endl;
cout<<"\t\t\t\Nama
:DEVITA DWI FAUZI(12171095)"<<endl;
cout<<"\t\t\t\Nama
:YULI AGUSTINAH (12171291)"<<endl;
cout<<"\t\t\t\Nama
:MULYATI NUR ASIYAH (12171687)"<<endl;
cout<<"\t\t\t\Nama
:GITAN AMELIA AMANDA (12172754)"<<endl;
cout<<endl;
cout<<"\t\t\t\tMANAJEMEN
INFORMATIKA"<<endl;
cout<<endl;
cout<<"\t\t\t\tKELAS
12.1F.01"<<endl;
cout<<endl;
cout<<"================================================================================"<<endl;
cout<<endl;
cout<<"INGIN MENCARI APA ?
"<<endl;
cout<<endl;
cout<<"1. LUAS PERSEGI
PANJANG"<<endl;
cout<<"2. LUAS
SEGITIGA"<<endl;
cout<<"3. LUAS BUJUR
SANGKAR"<<endl;
cout<<"4. KELILING PERSEGI
PANJANG"<<endl;
cout<<"5. KELUAR"<<endl;
cout<<endl;
cout<<"YUK MASUKKAN ANGKA UNTUK
MENCARI RUMUS (1-5) : ";
cin>>menu;
switch(menu)
{
case 1 :
clrscr();
system ("COLOR 4E");
cout<<endl;
cout<<"CARA
MENGHITUNG LUAS PERSEGI PANJANG"<<endl;
cout<<endl;
cout<<"Masukkan
angka panjang\t: ";cin>>panjang;
cout<<"Masukkan
angka lebar\t: ";cin>>lebar;
luasp=panjang*lebar;
cout<<endl;
cout<<"Maka
LUAS PERSEGI PANJANG tersebut adalah : "<<luasp<<"
CM2" <<endl;
cout<<endl;
cout<<"1 = KEMBALI KE
MENU"<<endl;
cout<<"2 = KELUAR"<<endl;
cout<<"kembali ke
menu[1/2]=";
cin>>pilih;
switch (pilih)
{
case 1:
goto a;
case 2:
system("cls");
break;
}
case 2
:
clrscr();
system ("COLOR 5E");
cout<<endl;
cout<<"CARA
MENGHITUNG LUAS SEGITIGA "<<endl;
cout<<endl;
cout<<"Masukkan
alas\t: ";cin>>alas;
cout<<"Masukkan
tinggi\t: ";cin>>tinggi;
luass=(alas*tinggi)/2;
cout<<endl;
cout<<"Maka
LUAS SEGITIGA tersebut adalah : "<<luass<<" CM2"
<<endl;
cout<<endl;
cout<<"1 = KEMBALI KE
MENU"<<endl;
cout<<"2 =
KELUAR"<<endl;
cout<<"kembali ke
menu[1/2]=";
cin>>pilih;
switch (pilih)
{
case 1:
goto a;
case 2:
system("cls");
break;
}
break;
case
3 :
clrscr();
system ("COLOR DE");
cout<<endl;
cout<<"CARA
MENGHITUNG LUAS BUJUR SANGKAR"<<endl;
cout<<endl;
cout<<"Masukkan
sisi pertama\t: ";cin>>sisi1;
cout<<"Masukkan
sisi kedua\t: ";cin>>sisi2;
luasb=sisi1*sisi2;
cout<<endl;
cout<<"Maka
LUAS BUJUR SANGKAR tersebut adalah : "<<luasb<<"
CM2" <<endl;
cout<<endl;
cout<<"1 = KEMBALI KE
MENU"<<endl;
cout<<"2 =
KELUAR"<<endl;
cout<<"kembali ke
menu[1/2]=";
cin>>pilih;
switch (pilih)
{
case 1:
goto a;
case 2:
system("cls");
break;
}
break;
case 4 :
clrscr();
system ("COLOR 17");
cout<<endl;
cout<<"CARA
MENGHITUNG KELILING BUJUR SANGKAR"<<endl;
cout<<endl;
cout<<"Masukkan
sisi\t: ";cin>>sisi1;
kelb=4*sisi1;
cout<<endl;
cout<<"Maka
KELILING BUJUR SANGKAR tersebut adalah : "<<kelb<<"
CM2"<<endl;
cout<<endl;
cout<<"1 = KEMBALI KE
MENU"<<endl;
cout<<"2 =
KELUAR"<<endl;
cout<<"kembali ke
menu[1/2]=";
cin>>pilih;
switch (pilih)
{
case 1:
goto a;
case 2:
system("cls");
break;
}
break;
case 5 :
clrscr();
cout<<endl;
system ("COLOR CF");
cout<<"\n\n\n\n\n\t\tTERIMA
KASIH TELAH MEMAKAI PROGRAM SEDERHANA INI"<<endl;
cout<<endl;
}
getch();
}
0 komentar:
Posting Komentar