Program untuk menentukan jumlah gaji bersih
Sunday, November 10, 2013
Add Comment
Pada kesempatan kali ini saya akan memberikan sebuah program yang berguna untuk Program menentukan jumlah gaji bersih . program ini support untuk MinGW Developer Studio
Gaji bersih = gaji pokok + jumlah bonus.
Menggunakan 5 macam fungsi:
main()
InputData()
bonus()
gajibersih()
gajitotal()
Ini Script Programnya
//Program Penghitungan Gaji
#include <iostream.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#include <iomanip.h>
#define array 100
long gaji_pokok;
long tambahan;
long bersih;
long totalgaji=0;
int n;
long gajibersih()
{
bersih = gaji_pokok + tambahan;
return (bersih);
}
long gajitotal()
{
cout<<" Gaji total pegawai adalah Sebesar : Rp. "<<gajibersih();
cout<<endl;
return 0;
} long bonus()
{
cout<<" Masukkan Gaji Pokok : Rp. ";
cin>>gaji_pokok;
cout<<" Masukkan Bonus : Rp. ";
cin>>tambahan;
cout<<endl;
cout<<" ---------------------------------- +"<<endl<<endl;
cout<<" Gaji Bersih : Rp. "<<gajibersih();
cout<<endl; gajitotal(); system("pause");
return 0;
}
int inputdata()
{
char nama[array][20];
char nip[array][12];
cout<<endl<<endl;
cout<<"Masukan Jumlah Karyawan : ";
cin>>n; for(int i=0; i<n; i++)
{
system("cls");
cout<<endl<<endl;
cout<<setw(40)<<"PEGAWAI "<<i+1;
cout<<endl<<endl;
cout<<" Nama Pegawai "<<i+1<<" : ";
cin>>nama[20];
cout<<" Nomor Induk Pegawai "<<i+1<<" : ";
cin>>nip[12];
cout<<endl;
bonus();
}
}
int main()
{
cout<<endl;
cout<<" =================================="<<endl;
cout<<" | Anggar Nur Herman Syah |"<<endl;
cout<<" | 130533608218 |"<<endl;
cout<<" | esokharinanti.blogspot,com |"<<endl;
cout<<" =================================="<<endl;
cout<<" | PROGRAM PENGHITUNGAN GAJI |"<<endl;
cout<<" =================================="<<endl<<endl;
inputdata();
}
0 Response to "Program untuk menentukan jumlah gaji bersih"
Post a Comment