Board logo

標題: [作業] 梯型面積計算程式 [打印本頁]

作者: tonyh    時間: 2011-9-10 17:30     標題: [作業] 梯型面積計算程式

試做一個梯型面積計算程式(自行指定上底,下底,與高的值)
梯型面積計算公式為: (上底+下底)*高/2
作者: 許逸瑋    時間: 2011-9-10 17:32

  1. #include <iostream>

  2. using namespace std;

  3. int main()

  4. {

  5.     int x;
  6.     int y;
  7.     int z;
  8.     cout<<"請輸入上底"<<endl;

  9.     cin>>x;

  10.     cout<<"請輸入下底"<<endl;
  11.    
  12.     cin>>y;
  13.    
  14.     cout<<"請輸入高"<<endl;
  15.    
  16.     cin>>z;
  17.    
  18.     cout<<"梯形面積為"<<x+y*z/2<<"平方"<<endl;
  19.      
  20. system("pause");

  21.   return 0;   

  22. }
複製代碼

作者: t8155745    時間: 2011-9-10 17:41

本帖最後由 t8155745 於 2011-9-17 16:31 編輯
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    float x,y,z,
  6.     cout<<"請輸入上底"<<endl;
  7.     cin>>x;
  8.     cout<<"請輸入下底"<<endl;
  9.     cin>>y;
  10.     cout<<"請輸入高"<<endl;
  11.     cin>>z;
  12.     cout<<"梯形的面積為"<<(x+y)*z/2<<endl;
  13.    
  14.    
  15.    
  16.    
  17.    
  18.    
  19.    
  20.    
  21.    
  22. system("pause");
  23.   return 0;   
  24. }
複製代碼

作者: t3742238    時間: 2011-9-10 20:22

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int x;
  6.    int y;
  7.    int z;
  8.    cout<<"歡迎進入炫宗的梯形面積計算程式"<<endl;
  9.    cout<<"請輸入上底"<<endl;
  10.    cin>>x;
  11.    cout<<"請輸入下底"<<endl;
  12.    cin>>y;
  13.    cout<<"請輸入高"<<endl;
  14.    cin>>z;
  15.    cout<<"您輸入的上底是"<<x<<endl;
  16.    cout<<"您輸入的下底是"<<y<<endl;
  17.    cout<<"您輸入的高是"<<z<<endl;
  18.    
  19.    
  20.    cout<<"答案是..."<<endl;
  21.    cout<<"("<<x<<"+"<<y<<")"<<"*"<<z<<"/2="<<(x+y)*z/2<<endl;


  22.    system("pause");
  23.    return 0;
  24. }
複製代碼

作者: 劉漢文    時間: 2011-9-11 10:04

本帖最後由 劉漢文 於 2011-9-17 16:25 編輯
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {               
  5.    float x;
  6.    float y;
  7.    float z;
  8.    cout<<"梯形面積計算程式"<<endl;
  9.    cout<<"請輸入上底(cm)"<<endl;
  10.    cin>>x;
  11.    cout<<"請輸入下底(cm)"<<endl;
  12.    cin>>y;
  13.    cout<<"請輸入高(cm)"<<endl;
  14.    cin>>z;
  15.    cout<<"您輸入的上底是"<<x<<"您輸入的下底是"<<y<<"您輸入的高是"<<z<<endl;
  16.    cout<<"答案是..."<<endl;
  17.    cout<<"("<<x<<"+"<<y<<")"<<"*"<<z<<"/2="<<(x+y)*z/2<<平方公分endl;

  18.    system("pause");

  19.    return 0;

  20. }
複製代碼

作者: 尤泓鈞    時間: 2011-9-17 16:19

  1. #include <iostream>

  2. using namespace std;

  3. int main()

  4. {
  5.   float x;
  6.   float y;
  7.   float z;
  8.    cout<<"請輸入上底"<<endl;
  9.    cin>>x;
  10.    cout<<"請輸入下底"<<endl;
  11.    cin>>y;
  12.    cout<<"請輸入高"<<endl;
  13.    cin>>z;
  14.    cout<<"您輸入的上底是"<<x<<endl;

  15.    cout<<"您輸入的下底是"<<y<<endl;

  16.    cout<<"您輸入的高是"<<z<<endl;
  17.            cout<<"("<<x<<"+"<<y<<")"<<"*"<<z<<"/2="<<(x+y)*z/2<<endl;
  18.    system("pause");

  19.    return 0;

  20. }
複製代碼

作者: t2364705    時間: 2011-9-17 16:21

本帖最後由 t2364705 於 2011-9-17 16:30 編輯
  1. #include <iostream>

  2. using namespace std;

  3. int main()

  4. {

  5.    
  6.     float x, y, z;
  7.     cout<<"請輸入上底(公分)"<<endl;

  8.     cin>>x;

  9.     cout<<"請輸入下底(公分)"<<endl;
  10.    
  11.     cin>>y;
  12.    
  13.     cout<<"請輸入高(公分)"<<endl;
  14.    
  15.     cin>>z;
  16.    
  17.     cout<<"梯形面積為"<<x+y*z/2<<"平方公分"<<endl;
  18.      
  19. system("pause");

  20.   return 0;   

  21. }
複製代碼

作者: t3742238    時間: 2011-9-17 16:22

#include <iostream>
using namespace std;
int main()
{
   float x.y.z;
   
   cout<<"歡迎進入炫宗的梯形面積計算程式"<<endl;
   cout<<"請輸入上底"<<endl;
   cin>>x;
   cout<<"請輸入下底"<<endl;
   cin>>y;
   cout<<"請輸入高"<<endl;
   cin>>z;
   cout<<"您輸入的上底是"<<x<<endl;
   cout<<"您輸入的下底是"<<y<<endl;
   cout<<"您輸入的高是"<<z<<endl;
   
   
   cout<<"答案是..."<<endl;
   cout<<"("<<x<<"+"<<y<<")"<<"*"<<z<<"/2="<<(x+y)*z/2<<endl;


   system("pause");
   return 0;
}
作者: 許逸瑋    時間: 2011-9-17 16:24

  1. #include <iostream>



  2. using namespace std;



  3. int main()



  4. {



  5.     float x,y,z;

  6.     cout<<"請輸入上底(cm)"<<endl;



  7.     cin>>x;



  8.     cout<<"請輸入下底(cm)"<<endl;

  9.    

  10.     cin>>y;

  11.    

  12.     cout<<"請輸入高(cm)"<<endl;

  13.    

  14.     cin>>z;

  15.    

  16.     cout<<"梯形面積為"<<(x+y)*z/2<<"平方cm"<<endl;

  17.      

  18.     system("pause");



  19.     return 0;   



  20. }
複製代碼

作者: 蔡昀佑    時間: 2011-9-17 16:26

本帖最後由 蔡昀佑 於 2011-9-17 16:32 編輯

#include <iostream>

using namespace std;

int main()

{
    float x,y,z;
    cout<<"請輸入上底(公分)"<<endl;

    cin>>x;

    cout<<"請輸入下底(公分)"<<endl;
   
    cin>>y;
   
    cout<<"請輸入高(公分)"<<endl;
   
    cin>>z;
   
    cout<<"梯形面積為"<<x+y*z/2<<"平方公分"<<endl;
     
system("pause");

  return 0;   

}
作者: t3742238    時間: 2011-9-17 16:29

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    float x,y,z;
  6.       cout<<"歡迎進入炫宗的梯形面積計算程式"<<endl;
  7.    cout<<"請輸入上底(cm)"<<endl;
  8.    cin>>x;

  9.    cout<<"請輸入下底(cm)"<<endl;
  10.    cin>>y;
  11.    cout<<"請輸入高(cm)"<<endl;
  12.    cin>>z;
  13.    cout<<"您輸入的上底是"<<x<<endl;
  14.    cout<<"您輸入的下底是"<<y<<endl;
  15.    cout<<"您輸入的高是"<<z<<endl;
  16.    
  17.    
  18.    cout<<"答案是..."<<endl;
  19.    cout<<"("<<x<<"+"<<y<<")"<<"*"<<z<<"/2="<<(x+y)*z/2<<endl;


  20.    system("pause");
  21.    return 0;
  22. }
複製代碼

作者: t2364705    時間: 2011-9-17 17:12

  1. #include <iostream>   //呼叫函數庫
  2. using namespace std;
  3. int main()
  4. {
  5.      int score;  //宣告一個名為score的整數變數
  6.      cout<<"請輸入你的分數";
  7.      cin>>score;
  8.      if(score>=60)  //如果成績高於或低於60分
  9. {
  10.      cout<<"恭喜你!及格了!";
  11. }
  12. else     //否則
  13. {
  14.          cout<<"哎呀!不及格!請再努力!:";
  15. }
  16. cout<<endl;     
  17. system("pause");

  18.   return 0;   

  19. }
複製代碼

作者: t2364705    時間: 2011-9-17 17:25

  1. #include <iostream>  //呼叫函數庫
  2. using namespace std;
  3. int main()
  4. {
  5.      int age;  //宣告一個名為age的整數變數
  6.      cout<<"輸入您的年齡";
  7.      cin>>age;
  8.      if(age>=18)  //如果年齡高於或低於100歲
  9. {
  10.      cout<<"恭喜你!你可以考騎機車駕照了!";
  11. }
  12. else     //否則
  13. {
  14.          cout<<"哎呀!你不行!你的年齡還沒到:";
  15. }
  16. cout<<endl;     
  17. system("pause");

  18.   return 0;   

  19. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2