#include <conio.h>
void lingkaran ()
{
float r, L;
cout<<"Masukkan jari-jari : ";
cin>>r;
cout<<endl;
L = 3.14 * r * r;
cout<<"Luasnya adalah : "<< L;
};
void segiempat ()
{
float s, L;
cout<<"Masukkan sisi : ";
cin>>s;
cout<<endl;
L= s * s;
cout<<"Luasnya adalah : "<< L;
};
void segitiga ()
{
float a, t, s, r, L;
cout<<"Masukkan alas : ";
cin>>a;
cout<<endl;
cout<<"Masukkan tinggi : ";
cin>>t;
cout<<endl;
L = 0.5 * a * t;
cout<<"Luasnya adalah : "<< L;
};
void persegi_panjang ()
{
float p,l, L;
cout<<"Masukkan panjang : ";
cin>>p;
cout<<endl;
cout<<"Masukkan lebar : ";
cin>>l;
cout<<endl;
L = p * l;
cout<<"Luasnya adalah : "<< L;
};
void main ()
{
float a, t, L;
int pil;
cout<<"==========================================="<<endl;
cout<<" PROGRAM APLIKASI FUNGSI MENGHITUNG LUAS "<<endl;
cout<<" KHOIRUL AS'ARI_ 120 103 119 "<<endl;
cout<<"==========================================="<<endl;
cout<<endl;
cout<<"1. Luas Lingkaran"<<endl;
cout<<"2. Luas Segiempat"<<endl;
cout<<"3. Luas Segitiga"<<endl;
cout<<"4. Luas Persegi_Panjang"<<endl;
cout<<endl;
cout<<"Ketik pilihan anda (1/2/3) : ";
cin>>pil;
cout<<endl<<endl;
if (pil==1){lingkaran ();}
else if (pil==2){segiempat ();}
else if (pil==3){segitiga ();}
else if (pil==4){persegi_panjang ();}
getch();
}