Program Penghitung Tagihan Listrik dengan Dev C++
PENGHITUNG TAGIHAN LISTRIK
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
char jwb;
float kwh;
float hasil_1,hasil_2,hasil_total;
do
{
cout<<endl;
cout<<"// * =================================================== * // "<<endl<<endl;
cout<<"// * PERHITUNGAN PENGHITUNG TAGIHAN * // "<<endl<<endl;
cout<<"// * LISTRIK * // "<<endl<<endl;
cout<<"// * =================================================== * // "<<endl<<endl;
cout<<endl;
cout<<" Masukkan Jumlah Meter dalam KWH = ";cin>>kwh;
cout<<endl;
if (kwh>=1000)
{
hasil_1=(kwh-1000)*245;
hasil_2= 177500;
hasil_total=hasil_1 +hasil_2;
cout<<" Jumlah Tagihan Yang dibayarkan = "<<"Rp "<<hasil_total<<endl;
}
if (kwh>500 && kwh<1000)
{
hasil_1=kwh*215;
hasil_2=70000;
hasil_total=hasil_1 +hasil_2;
cout<<" Jumlah Tagihan Yang dibayarkan = "<<"Rp "<<hasil_total<<endl;
}
if (kwh>=400 && kwh<500)
{
hasil_1=kwh*150;
hasil_2=10000;
hasil_total=hasil_1 +hasil_2;
cout<<" Jumlah Tagihan Yang dibayarkan = "<<"Rp "<<hasil_total<<endl;
}
if (kwh>=100 && kwh<400)
{
hasil_1=kwh*150;
hasil_2=10000;
hasil_total=hasil_1 +hasil_2;
cout<<" Jumlah Tagihan Yang dibayarkan = "<<"Rp "<<hasil_total<<endl;
}
if (kwh>=1 && kwh<100)
{
hasil_1=kwh*100;
cout<<" Jumlah Tagihan Yang dibayarkan = "<<"Rp "<<hasil_total<<endl;
}
cout<<endl<<endl;
cout<<" Kembali ke tampilan awal [Y / T] ";cin>>jwb;
cout<<endl<<endl;
system ("cls");
}
while (jwb=='y' || jwb=='Y');
//system("PAUSE");
//return EXIT_SUCCESS;
}
hasil pemograman :
ada pertanyaan tanya pada yang bisa...coy......!!!!!
boleh,mintah penjelasan scrip tiap" baris dari programnya nggak...??
BalasHapus