- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int math=0;
- int ww=0;
- cout<<"月份:"<<endl;
- cin>>math;
- cout<<"用電量";
- cin>>ww;
- if(6<math||9<math)
- {
- else if(ww<120)
- {
- cout<<"2.1元"<<endl;
- }
- else if(121<=ww||ww<=330)
- {
- cout<<"2.68元"<<endl;
- }
- else if(331<=ww||ww<=500)
- {
- cout<<"3.61元"<<endl;
- }
- else if(501<=ww||ww<=700)
- {
- cout<<"4.48元"<<endl;
- }
- else if(701<=ww||ww<=1000)
- {
- cout<<"5.03元"<<endl;
- }
- else if(ww<1001)
- {
- cout<<"5.28元"<<endl;
- }
- }
- system("pause");
- return 0;
- }
複製代碼 |