返回列表 發帖

[作業] 面積計算 (四) - 梯形

本帖最後由 方浩葦 於 2024-6-1 09:26 編輯

梯形面積公式: ( 上底 + 下底 ) * 高 / 2

#include <iostream>
#include <cstdlib>
using namespace std;

int main(){
    int x,y,z;

    cout<<"請輸入梯形的上底(公分)";
    cin>>x;
    cout<<"請輸入梯形的下底(公分)";
    cin>>y;
    cout<<"請輸入梯形的高(公分)";
    cin>>z;
    cout<<"上底"<<x<<"cm"<<"下底"<<y<<"cm"<<"高"<<z<<"cm"<<",面積="<<(x+y)*z/2<<"平方公分"<<endl;

    system ("pause");
    return 0;
}

TOP

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int x,y,z;
    cout<<"請輸入梯形的上底:";
    cin>>x;
    cout<<"請輸入梯形的下底:";
    cin>>y;
    cout<<"請輸入梯形的高:";
    cin>>z;
    cout<<"上底"<<x<<"公分,下底"<<y<<"公分,高"<<z<<"公分的梯形"<<"面積是"<<(x+y)*z/2<<"平方公分"<<endl;
    system("pause");
    return 0;
}

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
float x,y,z;
cout<<"請輸入梯形的上底(公分)";
cin>>x;
cout<<"請輸入梯形的下底(公分)";
cin>>y;
cout<<"請輸入梯形的高(公分)";
cin>>z;

cout<<"上底"<<x<<"公分,下底"<<y<<"公分,高"<<z<<"公分的梯形,面積為"<<(x+y)*z/2<<"平方公分"<<endl;
system("pause");
return 0;
}

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main(){

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

TOP

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

TOP

返回列表