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

TOP

返回列表