- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- system("cls");
- int month ,mony;
- float give;
- cout<<"***歡迎使電費計算機***"<<endl<<endl;
- cout<<"請輸入月份:";
- cin>>month;
- if(month>=6 && month<=9)
- {
- cout<<"用電度數:";
- cin>>mony;
- if(mony>=1 && mony<=120)
- {
- give=mony*1.63;
- }else if(mony>=121 && mony<=330)
- {
- give=120*1.63+(mony-120)*2.38;
- }else if(mony>=331 && mony<=500)
- {
- give=120*1.63+330*2.38+(mony-330)*3.52;
- }else if(mony>=501 && mony<=700)
- {
- give=120*1.63+330*2.38+500*3.52+(mony-500)*4.8;
- }else if(mony>=701 && mony<=1000)
- {
- give=120*1.63+330*2.38+500*3.52+700*4.8+(mony-700)*5.66;
- }else if(mony>=1001)
- {
- give=120*1.63+330*2.38+500*3.52+700*4.8+1000*5.66+(mony-1000)*6.41;
- }else
- {
- cout<<"輸入錯誤"<<endl;
- system("pause");
- goto re;
- }
- }else if((month>=1 && month<=5)|| (month>=10 && month<=12))
- {
- cout<<"用電度數:";
- cin>>mony;
- if(mony>=1 && mony<=120)
- {
- give=mony*1.63;
- }else if(mony>=121 && mony<=330)
- {
- give=120*1.63+(mony-120)*2.1;
- }else if(mony>=331 && mony<=500)
- {
- give=120*1.63+330*2.1+(mony-330)*2.89;
- }else if(mony>=501 && mony<=700)
- {
- give=120*1.63+330*2.1+500*2.89+(mony-500)*3.94;
- }else if(mony>=701 && mony<=1000)
- {
- give=120*1.63+330*2.1+500*2.89+700*3.94+(mony-700)*4.6;
- }else if(mony>=1001)
- {
- give=120*1.63+330*2.1+500*2.89+700*3.94+1000*4.6+(mony-1000)*5.03;
- }else
- {
- cout<<"輸入錯誤"<<endl;
- system("pause");
- goto re;
- }
- }else
- {
- cout<<"輸入錯誤"<<endl;
- system("pause");
- goto re;
- }
- cout<<"電費為"<<give<<endl;
- system("pause");
- return 0;
- }
複製代碼 |