返回列表 發帖

電費計算機(一)

參考台灣電力公司所公怖的電費計算表格, 設計一個計算電費的小工具,
讓使用者輸入月份, 與該月份的用電度數, 電腦回應該月份的電費.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    re:
  7.    system("cls");
  8.    int degree,month;
  9.    float money;
  10.    cout<<"*** 電費計算機 ***"<<endl<<endl;
  11.    cout<<"請輸入月份: ";
  12.    cin>>month;
  13.    if(month>=6 && month<=9)
  14.    {
  15.        cout<<"用電度數: ";
  16.        cin>>degree;
  17.        if(degree>0 && degree<=120)
  18.        {
  19.            money=1.63*degree;
  20.        }else if(degree>120 && degree<=330)
  21.        {
  22.            money=1.63*120+2.38*(degree-120);  
  23.        }else if(degree>330 && degree<=500)
  24.        {
  25.            money=1.63*120+2.38*(330-120)+3.52*(degree-330);  
  26.        }else if(degree>500 && degree<=700)
  27.        {
  28.            money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(degree-500);   
  29.        }else if(degree>700 && degree<=1000)
  30.        {
  31.            money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(degree-700);      
  32.        }else if(degree>=1001)
  33.        {
  34.              money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(1000-700)+6.41*(degree-1000);
  35.        }else
  36.        {
  37.            cout<<"用電度數輸入錯誤!"<<endl;
  38.            system("pause");
  39.            goto re;
  40.        }        
  41.    }else if((month>=10 && month<=12)||(month>=1 && month<=5))
  42.    {
  43.        cout<<"用電度數: ";
  44.        cin>>degree;
  45.        if(degree>0 && degree<=120)
  46.        {
  47.            money=1.63*degree;
  48.        }else if(degree>120 && degree<=330)
  49.        {
  50.            money=1.63*120+2.1*(degree-120);  
  51.        }else if(degree>330 && degree<=500)
  52.        {
  53.            money=1.63*120+2.1*(330-120)+2.89*(degree-330);  
  54.        }else if(degree>500 && degree<=700)
  55.        {
  56.            money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(degree-500);   
  57.        }else if(degree>700 && degree<=1000)
  58.        {
  59.            money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(degree-700);      
  60.        }else if(degree>=1001)
  61.        {
  62.              money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(1000-700)+5.03*(degree-1000);
  63.        }else
  64.        {
  65.            cout<<"用電度數輸入錯誤!"<<endl;
  66.            system("pause");
  67.            goto re;
  68.        }      
  69.    }else
  70.    {
  71.        cout<<"月份輸入錯誤!"<<endl;
  72.        system("pause");
  73.        goto re;     
  74.    }
  75.    cout<<endl<<"您要繳交的電費共 "<<money<<"元!"<<endl;  
  76.    system("pause");
  77.    return 0;   
  78. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 曲書辰 於 2019-5-4 15:16 編輯

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
float c;
re:
cout<<"請輸入月份:";
cin>>a;
cout<<"請輸入用電度:";
cin>>b;
if(a>=6 && a<=9)
{    if(b>=1 && b<=120)
      {c=b*1.63;         
      }
      else if(b>=121 && b<=330)
      {c=120*1.63+(b-120)*2.38;
      }
      else if(b>=331 && b<=500)
      {c=120*1.63+210*2.38+(b-120-210)*3.52;
      }
      else if(b>=501 && b<=700)
      {c=120*1.63+210*2.38+230*3.52+(b-120-210-230)*4.8;
      }
      else if(b>=701 && b<=1000)
      {c=120*1.63+210*2.38+230*3.52+200*4.8+(b-120-210-230-200)*5.66;
      }
      else
      {c=120*1.63+210*2.38+230*3.52+200*4.8+300*5.66+(b-1000)*6.41;
      }
      goto end;
}
else if((a>=1 && a<=5)||(a>=10 && a<=12))
{    if(b>=1 && b<=120)
      {c=b*1.63;         
      }
      else if(b>=121 && b<=330)
      {c=120*1.63+(b-120)*2.1;
      }
      else if(b>=331 && b<=500)
      {c=120*1.63+210*2.10+(b-120-210)*2.89;
      }
      else if(b>=501 && b<=700)
      {c=120*1.63+210*2.1+230*2.89+(b-120-210-230)*3.94;
      }
      else if(b>=701 && b<=1000)
      {c=120*1.63+210*2.38+230*3.52+200*4.8+(b-120-210-230-200)*5.66;
      }
      else
      {c=120*1.63+210*2.38+230*3.52+200*4.8+300*5.66+(b-1000)*6.41;
      }
      goto end;   
}
else
{   cout<<"錯誤"<<endl;
     system("pause");
     goto re;
}
system("pause");
return 0;
}

TOP

本帖最後由 王瑞喻 於 2019-5-11 13:33 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int month,d;
  9.     float sum=0;
  10.     cout<<"*****電費計算機*****"<<endl;
  11.     cout<<"請輸入月份: ";
  12.     cin>>month;
  13.    
  14.     if(month>=6 && month<=9)
  15.     {
  16.         cout<<"用電度數: ";
  17.         cin>>d;
  18.         if(d>=0&&d<=120)
  19.         {
  20.             sum=d*1.63;
  21.         }else if(d>=120&&d<=330)
  22.         {
  23.             sum=120*1.63+(d-120)*2.38;   
  24.         }else if(d>=330&&d<=500)
  25.         {
  26.             sum=120*1.63+210*2.38+(d-500)*3.52;   
  27.         }else if(d>=500&&d<=700)
  28.         {
  29.             sum=120*1.63+210*2.38+170*3.52+(d-500)*4.80;   
  30.         }else if(d>=700&&d<=1000)
  31.         {
  32.             sum=120*1.63+210*2.38+170*3.52+200*4.80+(d-700)*5.66;   
  33.         }else if(d>=1000)
  34.         {
  35.             sum=120*1.63+210*2.38+170*3.52+200*4.80+300*5.66+(d-1000)*6.41;   
  36.         }else
  37.         {
  38.             cout<<"用電度數輸入錯誤!"<<endl;  
  39.                         system("pause");
  40.                         goto re;
  41.         }
  42.          
  43.     }else if ((month>=1&&month<=5)||(month>=10&&month<=12))
  44.     {
  45.         cout<<"用電度數: ";
  46.         cin>>d;
  47.         if(d>=0&&d<=120)
  48.         {
  49.             sum=d*1.63;
  50.         }else if(d>=120&&d<=330)
  51.         {
  52.             sum=120*1.63+(d-120)*2.10;   
  53.         }else if(d>=330&&d<=500)
  54.         {
  55.             sum=120*1.63+210*2.10+(d-500)*2.89;   
  56.         }else if(d>=500&&d<=700)
  57.         {
  58.             sum=120*1.63+210*2.10+170*2.89+(d-500)*3.94;   
  59.         }else if(d>=700&&d<=1000)
  60.         {
  61.             sum=120*1.63+210*2.10+170*2.89+200*3.94+(d-700)*4.60;   
  62.         }else if(d>=1000)
  63.         {
  64.             sum=120*1.63+210*2.10+170*2.89+200*3.94+300*4.60+(d-1000)*5.03;   
  65.         }else
  66.         {
  67.             cout<<"用電度數輸入錯誤!"<<endl;
  68.                         system("pause");
  69.                         goto re;      
  70.         }
  71.     }else
  72.     {
  73.         cout<<"月份輸入錯誤!";
  74.         system("pause");
  75.                 goto re;
  76.     }
  77.     cout<<"您要繳交的電費共"<<sum<<"元!"<<endl;
  78.     system("pause");
  79.     return 0;
  80. }
複製代碼

TOP

本帖最後由 洪寬瀧 於 2019-5-11 13:42 編輯
  1. include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    re:
  7.    system("cls");
  8.    int degree,month;
  9.    float money;
  10.    cout<<"*** 電費計算機 ***"<<endl<<endl;
  11.    cout<<"請輸入月份: ";
  12.    cin>>month;
  13.    if(month>=6 && month<=9)
  14.    {
  15.        cout<<"用電度數: ";
  16.        cin>>degree;
  17.        if(degree>0 && degree<=120)
  18.        {
  19.            money=1.63*degree;
  20.        }else if(degree>120 && degree<=330)
  21.        {
  22.            money=1.63*120+2.38*(degree-120);  
  23.        }else if(degree>330 && degree<=500)
  24.        {
  25.            money=1.63*120+2.38*(330-120)+3.52*(degree-330);  
  26.        }else if(degree>500 && degree<=700)
  27.        {
  28.            money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(degree-500);   
  29.        }else if(degree>700 && degree<=1000)
  30.        {
  31.            money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(degree-700);      
  32.        }else if(degree>=1001)
  33.        {
  34.              money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(1000-700)+6.41*(degree-1000);
  35.        }else
  36.        {
  37.            cout<<"用電度數輸入錯誤!"<<endl;
  38.            system("pause");
  39.            goto re;
  40.        }        
  41.    }else if((month>=10 && month<=12)||(month>=1 && month<=5))
  42.    {
  43.        cout<<"用電度數: ";
  44.        cin>>degree;
  45.        if(degree>0 && degree<=120)
  46.        {
  47.            money=1.63*degree;
  48.        }else if(degree>120 && degree<=330)
  49.        {
  50.            money=1.63*120+2.1*(degree-120);  
  51.        }else if(degree>330 && degree<=500)
  52.        {
  53.            money=1.63*120+2.1*(330-120)+2.89*(degree-330);  
  54.        }else if(degree>500 && degree<=700)
  55.        {
  56.            money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(degree-500);   
  57.        }else if(degree>700 && degree<=1000)
  58.        {
  59.            money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(degree-700);      
  60.        }else if(degree>=1001)
  61.        {
  62.              money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(1000-700)+5.03*(degree-1000);
  63.        }else
  64.        {
  65.            cout<<"用電度數輸入錯誤!"<<endl;
  66.            system("pause");
  67.            goto re;
  68.        }      
  69.    }else
  70.    {
  71.        cout<<"月份輸入錯誤!"<<endl;
  72.        system("pause");
  73.        goto re;     
  74.    }
  75.    cout<<endl<<"您要繳交的電費共 "<<money<<"元!"<<endl;  
  76.    system("pause");
  77.    return 0;   
  78. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    re:
  7.    int degree,month;
  8.    float money;
  9.    cout<<"*** 電費計算機 ***"<<endl;
  10.    cout<<"請輸入月份: ";
  11.    cin>>month;
  12.    if(month>=6 && month<=9)
  13.    {
  14.        cout<<"用電度數: ";
  15.        cin>>degree;
  16.        if(degree>0 && degree<=120)
  17.        {
  18.            money=1.63*degree;
  19.        }else if(degree>120 && degree<=330)
  20.        {
  21.            money=1.63*120+2.38*(degree-120);  
  22.        }else if(degree>330 && degree<=500)
  23.        {
  24.            money=1.63*120+2.38*(330-120)+3.52*(degree-330);  
  25.        }else if(degree>500 && degree<=700)
  26.        {
  27.            money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(degree-500);  
  28.        }else if(degree>700 && degree<=1000)
  29.        {
  30.            money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(degree-700);  
  31.        }else if(degree>=1001)
  32.        {
  33.              money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(1000-700)+6.41*(degree-1000);
  34.        }else
  35.        {
  36.            cout<<"用電數輸入錯誤"<<endl;
  37.            system("pause");   
  38.        }     
  39.    }else if((month>=10 && month<=12)||(month>=1 && month<=5))
  40.    {
  41.           cout<<"用電度數: ";
  42.        cin>>degree;
  43.        if(degree>0 && degree<=120)
  44.        {
  45.            money=1.63*degree;
  46.        }else if(degree>120 && degree<=330)
  47.        {
  48.            money=1.63*120+2.1*(degree-120);  
  49.        }else if(degree>330 && degree<=500)
  50.        {
  51.            money=1.63*120+2.1*(330-120)+2.89*(degree-330);  
  52.        }else if(degree>500 && degree<=700)
  53.        {
  54.            money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(degree-500);   
  55.        }else if(degree>700 && degree<=1000)
  56.        {
  57.            money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(degree-700);      
  58.        }else if(degree>=1001)
  59.        {
  60.              money=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(1000-700)+5.03*(degree-1000);
  61.        }else
  62.        {
  63.            cout<<"用電度數輸入錯誤!"<<endl;
  64.            system("pause");
  65.            goto re;
  66.        }      
  67.    }else
  68.    {
  69.         cout<<"月份輸入錯誤"<<endl;
  70.         system("pause") ;
  71.    }  
  72. cout<<endl<<"您要繳交的電費共 "<<money<<"元!"<<endl;
  73. system("pause");
  74. return 0;      
  75.       
  76. }      
  77.       
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int month,p=0;
  9.     float sum;
  10.     cout<<"請輸入月份:";
  11.     cin>>month;
  12.    
  13.     if(month>=6 && month<=9)
  14.     {
  15.         cout<<"請輸入用電度數:";
  16.         cin>>p;
  17.         if(p>=0 && p<=120)
  18.         {
  19.             sum=1.63*p;
  20.         }
  21.         else if(p>120 && p<=330)
  22.         {
  23.             sum=1.63*120+2.38*(p-120);     
  24.         }
  25.         else if(p>330 && p<=500)
  26.         {
  27.             sum=1.63*120+2.38*(330-120)+3.52*(p-330);     
  28.         }
  29.         else if(p>500 && p<=700)
  30.         {
  31.             sum=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(p-500);     
  32.         }
  33.         else if(p>700 && p<=1000)
  34.         {
  35.             sum=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(p-700);           
  36.         }
  37.         else if(p>1000)
  38.         {
  39.             sum=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(1000-700)+6.41*(p-1000);      
  40.         }
  41.         else
  42.         {
  43.             cout<<"輸入錯誤"<<endl;
  44.             system("pause");
  45.             goto re;     
  46.         }
  47.     }
  48.     else if((month>=1 && month<=5)||(month>=10 && month<=12))
  49.     {
  50.         cout<<"請輸入用電度數:";
  51.         cin>>p;
  52.         if(p>=0 && p<=120)
  53.         {
  54.             sum=1.63*p;
  55.         }
  56.         else if(p>120 && p<=330)
  57.         {
  58.             sum=1.63*120+2.1*(p-120);     
  59.         }
  60.         else if(p>330 && p<=500)
  61.         {
  62.             sum=1.63*120+2.1*(330-120)+2.89*(p-330);     
  63.         }
  64.         else if(p>500 && p<=700)
  65.         {
  66.             sum=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(p-500);     
  67.         }
  68.         else if(p>700 && p<=1000)
  69.         {
  70.             sum=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(p-700);           
  71.         }
  72.         else if(p>1000)
  73.         {
  74.             sum=1.63*120+2.1*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(1000-700)+5.03*(p-1000);      
  75.         }
  76.         else
  77.         {
  78.             cout<<"輸入錯誤"<<endl;
  79.             system("pause");
  80.             goto re;     
  81.         }     
  82.     }
  83.     else
  84.     {
  85.         cout<<"月份輸入錯誤!"<<endl;
  86.         system("pause");
  87.         goto re;     
  88.     }
  89.     cout<<endl<<"您要繳交的電費共 "<<sum<<"元!"<<endl;   
  90.     system("pause");
  91.     return 0;   
  92. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int d,month;
  7.    float money;
  8.    cout<<"*** 電費計算機 ***"<<endl<<endl;
  9.    re:
  10.    cout<<"請輸入月份:";
  11.    cin>>month;
  12.    if(month>=6 && month<=9)
  13.    {
  14.          rf:
  15.          cout<<"請輸入用電度數:";
  16.          cin>>d;
  17.          if(d>=1 && d<=120)
  18.          {
  19.                money=1.63*d;
  20.          }else if(d>=121 && d<=330)
  21.          {
  22.                money=1.63*120+2.38*(d-120);
  23.          }else if(d>330 && d<=500)
  24.          {
  25.                money=1.63*120+2.38*(330-120)+3.52*(d-330);
  26.          }else if(d>500 && d<=700)
  27.          {
  28.                money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(d-500);   
  29.          }else if(d>700 && d<=1000)
  30.          {
  31.                money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(d-700);   
  32.          }else if(d>=1001)
  33.          {
  34.                money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(1000-700)+6.41*(d-1000);
  35.          }else
  36.          {
  37.                cout<<"用電度數輸入錯誤!"<<endl;
  38.                system("pause");
  39.                goto rf;
  40.          }               
  41.    }
  42.    else if((month>=1 && month<=5)||(month>=10 && month<=12))
  43.    {
  44.          rg:      
  45.          cout<<"請輸入用電度數:";
  46.          cin>>d;
  47.          if(d>=1 && d<=120)
  48.          {
  49.                money=1.63*d;
  50.          }else if(d>=121 && d<=330)
  51.          {
  52.                money=1.63*120+2.10*(d-120);
  53.          }else if(d>330 && d<=500)
  54.          {
  55.                money=1.63*120+2.10*(330-120)+2.89*(d-330);
  56.          }else if(d>500 && d<=700)
  57.          {
  58.                money=1.63*120+2.10*(330-120)+2.89*(500-330)+3.94*(d-500);
  59.          }else if(d>700 && d<=1000)
  60.          {
  61.                money=1.63*120+2.10*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(d-700);
  62.          }else if(d>=1001)
  63.          {
  64.                money=1.63*120+2.10*(330-120)+2.89*(500-330)+3.94*(700-500)+4.6*(1000-700)+5.03*(d-1000);
  65.          }else
  66.          {
  67.                cout<<"用電度數輸入錯誤!"<<endl;
  68.                system("pause");
  69.                goto rg;
  70.          }               
  71.    }
  72.    else
  73.    {
  74.          cout<<"輸入錯誤"<<endl;
  75.          goto re;
  76.    }
  77.    cout<<"您要繳交的電費共"<<money<<"元!"<<endl;
  78.    system("pause");
  79.    return 0;   
  80. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    re:   
  7.    system("cls");
  8.    int du,month;
  9.    float money;
  10.    
  11.    cout<<"請輸入月份: ";
  12.    cin>>month;
  13.    
  14.   
  15.    if(month>=6 && month<=9)
  16. {
  17.    cout<<"用電度數: ";
  18.      cin>>du;         
  19.      
  20.      if(du>0 && du<=120)
  21.    {
  22.    money=du*1.63;
  23.      
  24.    }else if(du>120 && du<=330)
  25.    {
  26.      money=1.63*120+2.38*(du-120);   
  27.    }else if(du>330 && du<=500)
  28.    {
  29.      money=1.63*120+2.38*(330-120)+3.52*(du-330);   
  30.    }else if(du>500 && du<=700)
  31.    {
  32.      money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(du-700);   
  33.    }else if(du>700 && du<=1000)
  34.    {
  35.      money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(du-700);   
  36.    }else if(du>=1001)
  37.    {
  38.      money=1.63*120+2.38*(330-120)+3.52*(500-330)+4.8*(700-500)+5.66*(1000-700)+6.41*(du-1000);   
  39.    }else
  40.    {
  41.         cout<<"用電度數輸入錯誤!"<<endl;
  42.         system("pause");
  43.         goto re;
  44.    }
  45.    
  46. }else if((month>=10 && month<=12) || (month>=1 && month<=5))
  47. {
  48.         cout<<"用電度數:"<<endl;
  49.         cin>>du;
  50.      if(du>0 && du<=120)
  51.    {
  52.    money=du*1.63;
  53.      
  54.    }
  55.    else if(du>120 && du<=330)
  56.    {
  57.      money=1.63*120+2.10*(du-120);   
  58.    }else if(du>330 && du<=500)
  59.    {
  60.      money=1.63*120+2.10*(330-120)+2.89*(du-330);   
  61.    }
  62.    else if(du>500 && du<=700)
  63.    {
  64.      money=1.63*120+2.10*(330-120)+2.89*(500-330)+3.94*(du-700);   
  65.    }
  66.    else if(du>700 && du<=1000)
  67.    {
  68.      money=1.63*120+2.10*(330-120)+2.89*(500-330)+3.94*(700-500)+4.60*(du-700);   
  69.    }
  70.    else if(du>=1001)
  71.    {
  72.      money=1.63*120+2.10*(330-120)+2.89*(500-330)+3.94*(700-500)+4.60*(1000-700)+5.03*(du-1000);   
  73.    }else
  74.        {
  75.            cout<<"用電度數輸入錯誤!"<<endl;
  76.            system("pause");
  77.            goto re;
  78.        }
  79. }else
  80.    {
  81.        cout<<"月份輸入錯誤!"<<endl;
  82.        system("pause");
  83.        goto re;     
  84.    }      
  85.                  
  86.            
  87.    cout<<"您要繳的電費為"<<money<<"元!"<<endl;
  88.    system("pause");
  89.    return 0;
  90. }         
複製代碼

TOP

返回列表