返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. float tri(float, float);
  4. float cir(float);
  5. float rec(float, float);
  6. float tra(float, float, float);
  7. int main()
  8. {
  9.     float x, y ,z ;
  10.     int a;
  11.     cout<<"請問您要算哪一種的面積??(1)三角形(2)圓形(3)長方形(4)梯形"<<endl;   
  12.     cin>>a;
  13.     switch(a)
  14.     {
  15.              case 1:
  16.                   cout<<"請輸入三角形的底: ";
  17.                   cin>>x;
  18.                   cout<<"請輸入三角形的高: ";
  19.                   cin>>y;
  20.                   cout<<"三角形的面積為: "<<tri(x,y)<<"平方公分"<<endl;
  21.                   break;
  22.              case 2:
  23.                   cout<<"請輸入圓的半徑: ";
  24.                   cin>>x;
  25.                   cout<<"圓面積為: "<<cir(x)<<"平方公分"<<endl;
  26.                   break;      
  27.              case 3:
  28.                   cout<<"請輸入長方形的底: ";
  29.                   cin>>x;
  30.                   cout<<"請輸入長方形的高: ";
  31.                   cin>>y;
  32.                   cout<<"長方形的面積為: "<<rec(x,y)<<"平方公分"<<endl;
  33.                   break;
  34.              case 4:
  35.                   cout<<"請輸入梯形的上底: ";
  36.                   cin>>x;
  37.                   cout<<"請輸入梯形的下底: ";
  38.                   cin>>y;
  39.                   cout<<"請輸入梯形的高: ";
  40.                   cin>>z;
  41.                   cout<<"正方形的面積為: "<<tra(x,y,z)<<"平方公分"<<endl;
  42.                   break;
  43.              default:
  44.                    cout<<"來鬧的??";
  45.                    break;            
  46.     }
  47.     system("pause");   
  48.     return 0;
  49. }
  50. float tri(float x, float y)
  51. {
  52.     return x*y/2;
  53. }float cir(float x)
  54. {
  55.     return x*x*3.14;
  56. }float rec(float x, float y)
  57. {
  58.     return x*y;
  59. }float tra(float x, float y ,float z)
  60. {
  61.     return (x+y)*z/2;
  62. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. float tri(float x, float y)
  4. {
  5.     cout<<"請輸入三角形的底: ";
  6.     cin>>x;
  7.     cout<<"請輸入三角形的高: ";
  8.     cin>>y;
  9.     cout<<"三角形的面積為: "<<x*y/2<<"平方公分"<<endl;
  10. }
  11. float cir(float x)
  12. {
  13.     cout<<"請輸入圓的半徑: ";
  14.     cin>>x;
  15.     cout<<"圓面積為: "<<x*x*3.14<<"平方公分"<<endl;
  16. }
  17. float rec(float x, float y)
  18. {
  19.     cout<<"請輸入長方形的底: ";
  20.     cin>>x;
  21.     cout<<"請輸入長方形的高: ";
  22.     cin>>y;
  23.     cout<<"長方形的面積為: "<<x*y<<"平方公分"<<endl;
  24. }
  25. float tra(float x, float y ,float z)
  26. {
  27.     cout<<"請輸入梯形的上底: ";
  28.     cin>>x;
  29.     cout<<"請輸入梯形的下底: ";
  30.     cin>>y;
  31.     cout<<"請輸入梯形的高: ";
  32.     cin>>z;
  33.     cout<<"梯形的面積為: "<<(x+y)*z/2<<"平方公分"<<endl;
  34. }
  35. int main()
  36. {
  37.     float x, y ,z ;
  38.     int a;
  39.     cout<<"請問您要算哪一種的面積??(1)三角形(2)圓形(3)長方形(4)梯形"<<endl;   
  40.     cin>>a;
  41.     switch(a)
  42.     {
  43.              case 1:
  44.                   tri(x,y);
  45.                   break;
  46.              case 2:
  47.                   cir(x);
  48.                   break;      
  49.              case 3:
  50.                   rec(x,y);
  51.                   break;
  52.              case 4:
  53.                   tra(x,y,z);
  54.                   break;
  55.              default:
  56.                    cout<<"來鬧的??";
  57.                    break;            
  58.     }
  59.     system("pause");   
  60.     return 0;
  61. }
複製代碼

TOP

返回列表