返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. float cir(float, float);
  4. float tri(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<<"圓面積為: "<<cir(x)<<"平方公分"<<endl;
  19.                   break;
  20.              case 2:
  21.                   cout<<"請輸入底: ";
  22.                   cin>>x;
  23.                   cout<<"請輸入高: ";
  24.                   cin>>y;
  25.                   cout<<"三角形的面積為: "<<tri(x,y)<<"平方公分"<<endl;
  26.                   break;
  27.       
  28.              case 3:
  29.                   cout<<"請輸入底: ";
  30.                   cin>>x;
  31.                   cout<<"請輸入高: ";
  32.                   cin>>y;
  33.                   cout<<"長方形的面積為: "<<rec(x,y)<<"平方公分"<<endl;
  34.                   break;
  35.              case 4:
  36.                   cout<<"請輸入上底: ";
  37.                   cin>>x;
  38.                   cout<<"請輸入下底: ";
  39.                   cin>>y;
  40.                   cout<<"請輸入高: ";
  41.                   cin>>z;
  42.                   cout<<"梯形的面積是: "<<tra(x,y,z)<<"平方公分"<<endl;
  43.                   break;
  44.                   }
  45.     system("pause");   
  46.     return 0;
  47. }
  48. float cir(float x)
  49. {
  50.     return x*x*3.14;
  51. }float tri(float x, float y)
  52. {
  53.     return x*y/2;
  54. }float rec(float x, float y)
  55. {
  56.     return x*y;
  57. }float tra(float x, float y ,float z)
  58. {
  59.     return (x+y)*z/2;
  60. }
複製代碼

TOP

回復 4# 劉漢文
  1. #include<iostream>
  2. using namespace std;
  3. float cir(float, float);
  4. float tri(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.                   cir(x);
  17.                   break;
  18.              case 2:
  19.                  tri(x,y)
  20.                   break;
  21.       
  22.              case 3:
  23.                   rec(x,y)
  24.                   break;
  25.              case 4:
  26.                  tra(x,y,z)
  27.                   break;
  28.                   }
  29.     system("pause");   
  30.     return 0;
  31. }
  32. float cir(float x)
  33. {
  34.       cout<<"請輸入圓的半徑: ";
  35.       cin>>x;
  36.       cout<<"圓面積為: "<<x*x*3.14<<"平方公分"<<endl;
  37. }
  38. float tri(float x, float y)
  39. {
  40.     cout<<"請輸入底: ";
  41.     cin>>x;
  42.     cout<<"請輸入高: ";
  43.     cin>>y;
  44.     cout<<"三角形的面積為: "<<x*y/2<<"平方公分"<<endl;  
  45. }float rec(float x, float y)
  46. {
  47.      cout<<"請輸入底: ";
  48.      cin>>x;
  49.      cout<<"請輸入高: ";
  50.      cin>>y;
  51.      cout<<"長方形的面積為: "<<x*y<<"平方公分"<<endl;   
  52. }float tra(float x, float y ,float z)
  53. {
  54.      cout<<"請輸入上底: ";
  55.      cin>>x;
  56.      cout<<"請輸入下底: ";
  57.      cin>>y;
  58.      cout<<"請輸入高: ";
  59.      cin>>z;
  60.      cout<<"梯形的面積是: "<<(x+y)*z/2<<"平方公分"<<endl;   
  61. }
複製代碼

TOP

返回列表