#include<iostream.h>
void jumlah(int a,int b);// deklarasikan procedure
void main()
{
int a,b;
cout<<"MENU"<<endl;
cout<<"==========================================="<<endl;
cout<<"permen : 100.000"<<endl;
cout<<"susu : 200.000"<<endl;
cout<<"==========================================="<<endl;
cout<<"masukan pilihan anda :";
cin>>a;
cout<<"masukan jumlah :";
cin>>b;
jumlah(a,b);//panggil program procedure
}
void jumlah(int a,int b)//program procedure
{
long int permen,susu;
if(a==1)
{
permen=100000;
long int tot,sum,jumlah;
tot=b*permen;
cout<<" jumlah :"<<tot;
if(tot >= 100000)
{
cout<<endl;
cout<<"anda mendapat discon 10%"<<endl;
sum=0.1*tot;
jumlah=tot-sum;
cout<<"jumlah yang harus di bayar Rp "<<jumlah;
}
else if(tot > 200000)
{
cout<<endl;
cout<<"anda mendapat discon 30%"<<endl;
sum=0.3*tot;
jumlah=tot-sum;
cout<<"jumlah yang harus di bayar Rp "<<jumlah;
}
}
else if(a==2)
{
susu=200000 ;
long int tot,sum,jumlah;
tot=b*susu;
cout<<" jumlah :"<<tot;
if(tot > 100000)
{
cout<<endl;
cout<<"anda mendapat discon 10%"<<endl;
sum=0.1*tot;
jumlah=tot-sum;
cout<<"jumlah yang harus di bayar Rp "<<jumlah;
}
else if(tot > 200000)
{
cout<<endl;
cout<<"anda mendapat discon 20%"<<endl;
sum=0.3*tot;
jumlah=tot-sum;
cout<<"jumlah yang harus di bayar Rp "<<jumlah;
}
}
}
Tidak ada komentar:
Posting Komentar