返回列表 發帖

[作業] 函數的建立與執行

本帖最後由 tonyh 於 2012-6-16 16:01 編輯

利用自定函數法, 設計一面積計算程式, 提供四個選項.
譬如: (1)圓形  (2)三角形  (3)長方形  (4)梯形
  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.                   tri(x,y);
  17.                   break;
  18.              case 2:
  19.                   cir(x);
  20.                   break;      
  21.              case 3:
  22.                   rec(x,y);
  23.                   break;
  24.              case 4:
  25.                   tra(x,y,z);
  26.                   break;
  27.              default:
  28.                    cout<<"來鬧的??";
  29.                    break;            
  30.     }
  31.     system("pause");   
  32.     return 0;
  33. }
  34. float tri(float x, float y)
  35. {
  36.     cout<<"請輸入三角形的底: ";
  37.     cin>>x;
  38.     cout<<"請輸入三角形的高: ";
  39.     cin>>y;
  40.     cout<<"三角形的面積為: "<<x*y/2<<"平方公分"<<endl;
  41. }
  42. float cir(float x)
  43. {
  44.     cout<<"請輸入圓的半徑: ";
  45.     cin>>x;
  46.     cout<<"圓面積為: "<<x*x*3.14<<"平方公分"<<endl;
  47. }
  48. float rec(float x, float y)
  49. {
  50.     cout<<"請輸入長方形的底: ";
  51.     cin>>x;
  52.     cout<<"請輸入長方形的高: ";
  53.     cin>>y;
  54.     cout<<"長方形的面積為: "<<x*y<<"平方公分"<<endl;
  55. }float tra(float x, float y ,float z)
  56. {
  57.     cout<<"請輸入梯形的上底: ";
  58.     cin>>x;
  59.     cout<<"請輸入梯形的下底: ";
  60.     cin>>y;
  61.     cout<<"請輸入梯形的高: ";
  62.     cin>>z;
  63.     cout<<"梯形的面積為: "<<(x+y)*z/2<<"平方公分"<<endl;
  64. }
複製代碼
  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. }
複製代碼

返回列表