返回列表 發帖

梯形面積

本帖最後由 tonyh 於 2013-3-9 15:01 編輯

設計一小程式, 計算梯形面積.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       float x, y, z;  //宣告浮點數變數
  7.       cout<<"請輸入梯形的上底(公分): ";
  8.       cin>>x;
  9.       cout<<"請輸入梯形的下底(公分): ";
  10.       cin>>y;
  11.       cout<<"請輸入梯形的高(公分): ";
  12.       cin>>z;
  13.       cout<<"上底"<<x<<"公分, 下底"<<y<<"公分, 高"
  14.           <<z<<"公分的梯形, 面積為"<<(x+y)*z/2<<"平方公分"<<endl;
  15.       system("pause");
  16.       return 0;
  17. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. float x,y,z;
  7. cout<<"請輸入梯形的上底(公分):";
  8. cin>>x;
  9.   cout<<"請輸入梯形的下底(公分):";
  10. cin>>y;
  11.   cout<<"請輸入梯形的高(公分):";
  12. cin>>z;
  13. cout<<"上底"<<x<<"公分.下底"<<y<<"公分.高"
  14.      <<z<<"公分的梯形.面積為"<<(x+y)*z/2<<"平方公分"<<endl;
  15.      system("pause");
  16.      return 0;   
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float X, y, z;
  7.     cout<<"輸入梯型上底";
  8.     cin>>x;
  9.     cout<<"輸入梯型下底";
  10.     cin>>y;
  11.     cout<<"輸入梯型高";
  12.     cin>>z;
  13.     cout<<"上底"<<X<<"CM,下底"<<Y<<"CM,高"
  14.         <<z<<"cm的梯型,面積為"<<(x+y)*z/2<<平方CM<<endl;


  15.    
  16.    
  17.     system("pause")
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x, y, z;
  7.     cout<<"請輸入請輸入梯型的上底(公分): ";
  8.     cin>> x;
  9.     cout<<"請輸入請輸入梯型的下底(公分): ";
  10.     cin>> y;
  11.     cout<<"請輸入請輸入梯型的高(公分): ";
  12.     cin>> z;
  13.     cout<<"上底為"<<x<<"公分,下底為"<<y<<"公分,高為"<<z<<"的梯形面積為"
  14.     <<(x+y)*z/2<<"平方公分" ;
  15.      
  16.     system("pause");
  17.   return 0;


  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x, y, z;
  7.     cout<<"請輸入梯形的上底(公分): ";
  8.     cin>>x;
  9.     cout<<"請輸入梯形的下底(公分): ";
  10.     cin>>y;
  11.     cout<<"請輸入梯形的高(公分): ";
  12.     cin>>z;
  13.     cout<<"上底"<<x<<"公分, 下底"<<y<<"公分, 高"<<z<<"公分的梯形, 面積為"<<(x+y)*z/2<<"平方公分"<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

本帖最後由 黃崇維 於 2013-3-9 15:01 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         float x,y,z;
  7.         cout<<"請輸入梯形的上底(公分):";
  8.         cin>>x;
  9.         cout<<"請輸入梯形的下底(公分):";
  10.         cin>>y;
  11.         cout<<"請輸入梯形的高(公分):";
  12.         cin>>z;
  13.         cout<<"上底"<<x<<"公分.下底"<<y<<"公分.高"
  14.         <<z<<"公分的梯形.面積為"<<(x+y)*z/2<<"平方公分"<<endl;
  15.         system("pause");
  16.         return 0;   
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x,y,z;
  7.     cout<<"請輸入梯型的上底(公分): ";
  8.     cin>>x;
  9.     cout<<"請輸入梯型的下底(公分): ";
  10.     cin>>y;
  11.     cout<<"請輸入梯型的高(公分): ";
  12.     cin>>z;
  13.     cout<<"上底"<<x<<"公分,下底"<<y<<"公分,高"<<z
  14.     <<"公分的梯型,面積為"<<(x+y)*z/2<<"平方公分"<<endl;
  15.     system ("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>

  2. #include<cstdlib>

  3. using namespace std;

  4. int main()

  5. {
  6. float x,y,z;
  7. cout<<"請輸入梯型的上底(公分)";
  8. cin>>x;
  9. cout<<"請輸入梯型的下底(公分)";
  10. cin>>y;
  11. cout<<"請輸入梯型的高(公分)";
  12. cin>>z;
  13. cout<<"上底"<<x<<"公分,下底"<<y<<"公分,高"<<z<<"公分的梯形,面積為"<<(x+y)*z/2<<"平方公分"<<endl;
  14.    


  15.     system("pause");

  16.     return 0;   

  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x,y,z;
  7.     cout<<"請輸入梯形的上底(公分):";
  8.     cin>>x;
  9.     cout<<"請輸入梯形的下底(公分):";
  10.     cin>>y;
  11.     cout<<"請輸入梯形的高(公分):";
  12.     cin>>z;
  13.     cout<<"上底"<<x<<"公分,下底"<<y<<"公分,高"<<z<<"公分的梯形,面積為"
  14.         <<x*z/2+y*z/2<<"平方公分"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x, y, z,;
  7.     cout<<"請輸入梯形的上底(公分): ";
  8.     cin>>x;
  9.     cout<<"請輸入梯形的下底(公分): ";
  10.     cin>>y;
  11.     cout<<"請輸入梯形的高(公分): ";
  12.     cin>>z;
  13.     cout<<"上底"<<x<<"公分, 下底"<<y<<"公分, 高"
  14.         <<z<<"公分的梯形,面積為"<<(x+y)*z/2<<"平方公分"<<endl;   
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x, y, z;
  7.     cout<<"請輸入請輸入梯型的上底(公分): ";
  8.     cin>> x;
  9.     cout<<"請輸入請輸入梯型的下底(公分): ";
  10.     cin>> y;
  11.     cout<<"請輸入請輸入梯型的高(公分): ";
  12.     cin>> z;
  13.     cout<<"上底為"<<x<<"公分,下底為"<<y<<"公分,高為"<<z<<"的梯形面積為"
  14.     <<(x+y)*z/2<<"平方公分" ;
  15.      
  16.     system("pause");
  17.   return 0;


  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x,y,z;
  7. cout<<"請輸入梯形的上底(單位:公分):";
  8. cin>>x;
  9. cout<<"請輸入梯形的下底(單位:公分):";
  10. cin>>y;
  11. cout<<"請輸入梯形的高(單位:公分):";
  12. cin>>z;
  13. cout<<"當梯形的上底為"<<x<<"公分,"<<"梯形的下底為"<<y<<"公分,""梯形的高為"<<z<<
  14. "三角形的面積為"<<(x+y)*z/2<<"平方公分"<<endl;

  15.     system("pause");
  16.     return 0;
  17.    
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      float x,y,z;
  7.      cout<<"請輸入梯形上底的邊長: ";
  8.      cin>>x;
  9.      cout<<"請輸入梯形下底的邊長: ";
  10.      cin>>y;
  11.      cout<<"請輸入梯形高的邊長: ";
  12.      cin>>z;
  13.      cout<<"上底"<<x<<"公分,下底為"<<y<<"公分,高為"
  14.          <<z<<"公分,其面積為"<<(x+y)*z/2<<"平方公分"<<endl;  
  15.      
  16.      
  17.     system("pause");         
  18.     return 0;
  19. }           
複製代碼

TOP

返回列表