#include "iostream.h"
class spp
{
int temp,ags,okt,nop,jan,feb,mar;
public :
spp (int a,int b, int c,int d, int e, int f) //constructor
{
ags = a;
okt = b;
nop = c;
jan = d;
feb = e;
mar = f;
}
void total ()
{
cout<<"Masukkan Total Biaya Anda : ";
cin>>temp;
cout<<"\n";
};
void agustus ()
{
temp = temp - ags;
cout<<"Biaya Bulan Ini Adalah : 650.000 "<
void oktober ()
{
temp = temp - okt;
cout<<"Biaya Bulan Ini Adalah : 500.000"<
void nopember ()
{
temp = temp - nop;
cout<<"Biaya Bulan Ini Adalah : 500.000"<
};
void januari ()
{
temp = temp - jan;
cout<<"Biaya Bulan Ini Adalah : 600.000"<
void febuari ()
{
temp = temp - feb;
cout<<"Biaya Bulan Ini Adalah : 500.000"<
void maret ()
{
temp = temp - mar;
cout<<"Biaya Bulan Ini Adalah : 500.000"<
void display ()
{
cout<<"Maka Biaya Anda Kurang : "<
};
void main ()
{
int kode;
spp tgs1 (650000,500000,500000,600000,500000,500000);
tgs1.total ();
do
{
cout<<"1.transaksi bulan agustus"<<"\n";
cout<<"2.transaksi bulan oktober"<<"\n";
cout<<"3.transaksi bulan november"<<"\n";
cout<<"4.transaksi bulan januari"<<"\n";
cout<<"5.transaksi bulan februari"<<"\n";
cout<<"6.transaksi bulan maret"<<"\n";
cout<<"masukkan pilihan anda : ";cin>>kode;
cout<<"\n";
switch(kode)
{
case 1 :
{
tgs1.agustus ();
tgs1.display ();
}
break;
case 2 :
{
tgs1.oktober ();
tgs1.display ();
}
break;
case 3 :
{
tgs1.nopember ();
tgs1.display ();
}
break;
case 4 :
{
tgs1.januari ();
tgs1.display ();
}
break;
case 5 :
{
tgs1.febuari ();
tgs1.display ();
}
break;
case 6 :
{
tgs1.maret ();
tgs1.display ();
}
break;
}
}
while (kode!=7);
}
OUTPUT PROGRAM :