返回列表 發帖

比賽題目 (三)

設計一梯形面積計算程式, 使用者可自行輸入上底下底與高的值, 執行結果如下:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 周旻賢 於 2012-8-9 10:34 編輯
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. cout<<"梯形面積計算機"<<endl;  
  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/2<<"平方公分!!"<<endl;
  14.   
  15.   system("pause");
  16.   return 0;      
  17. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   cout<<"三角形面積計算機"<<endl;  
  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.   cout<<"本梯形的面積為:"<<(x+y)*z/2<<"平方公分!!"<<endl;
  15.   
  16.   system("pause");
  17.   return 0;      
  18. }
複製代碼

TOP

  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<<"公分,面積為"
  13.     <<(x+y)*z/2<<"平方公分"<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   cout<<"三角形面積計算機"<<endl;  
  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/2<<"平方公分!!"<<endl;
  14.   
  15.   system("pause");
  16.   return 0;      
  17. }
複製代碼

TOP

  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.     system("pause");  
  15.     return 0;
  16. }
複製代碼

TOP

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

TOP

返回列表