Thursday, 15 December 2011

hitung gaji bersih


#include<stdio.h>
#include<conio.h>
#include<iostream.h>
void main()
{
long int gapok,maker;
float tunj,asuransi,gaber;
clrscr();
cout<<"Lama Kerja [dalam tahun]= ";
cin>>maker;
gapok=5000000;
asuransi=gapok*0.1;
if (maker>=10)
tunj=gapok*0.5;
else if(maker<10 && maker>5)
tunj=gapok*0.25;
else if(maker<=5 && maker >=2)
tunj=gapok*0.15;
else
tunj=0;
gaber=gapok+tunj-asuransi;
cout<<"Gaji Pokok            = 5000000";
cout<<endl;
cout<<"Jumlah Tunjangan      = "<<tunj<<endl;
cout<<"jumlah asuransi       = "<<asuransi<<endl;
cout<<"Gaji Bersihnya Adalah = "<<gaber;
getch();
}

No comments:

Post a Comment