標題:
面積計算 (四) - 梯形
[打印本頁]
作者:
鄭繼威
時間:
2022-3-22 23:43
標題:
面積計算 (四) - 梯形
本帖最後由 鄭繼威 於 2022-3-28 14:24 編輯
梯形面積公式: ( 上底 + 下底 ) * 高 / 2
作者:
鄭繼威
時間:
2022-3-23 21:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
//宣告變數
float x; //上底
float y; //下底
float z; //高
cout<<"請輸入梯形的上底:";
cin>>x;
cout<<"請輸入梯形的下底:";
cin>>y;
cout<<"請輸入梯形的高:";
cin>>z;
cout<<"上底為:"<<x<<"、下底為:"<<y<<"、高為:"<<z<<"的梯形,面積為:"<<(x+y)*z/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-3-23 21:08
#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;
}
複製代碼
作者:
黃裕恩
時間:
2022-3-23 21:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
float y;
float z;
cout<<"請輸入梯形的上底:";
cin>>x;
cout<<"請輸入梯形的下底:";
cin>>y;
cout<<"請輸入梯形的高:";
cin>>z;
cout<<"上底為:"<<x<<"、下底為:"<<y<<"、高為:"<<z<<"的梯形,面積為:"<<(x+y)*z/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2022-3-23 21:17
#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<<"高為:"<<"公分的梯形,面積為"<<(x+y)*z/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃柏青
時間:
2022-3-23 21:20
#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;
}
複製代碼
作者:
黃柏青
時間:
2022-3-23 21:20
#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<<"周長為"<<((y-x)/2)*((y-x)/2)+z*z<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李睿宸
時間:
2022-4-19 19:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float u,d,h;
cout<<"請輸入梯形上底(cm):";
cin>>u;
cout<<"請輸入梯形下底(cm):";
cin>>d;
cout<<"請輸入梯形高(cm):";
cin>>h;
cout<<"上底"<<u<<"cm,下底"<<d<<"cm,高"<<h<<"cm的梯形,面積為"<<(u+d)*h/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-5-9 21:00
布林
作者:
林劭澧
時間:
2022-5-10 17:08
#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;
}
複製代碼
作者:
林劭澧
時間:
2022-5-12 17:15
njfnhjkvna nguieniguvieb
作者:
林劭杰
時間:
2022-5-15 20:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
float x; //上底
float y; //下底
float z; //高
cout<<"請輸入梯形的上底:";
cin>>x;
cout<<"請輸入梯形的下底:";
cin>>y;
cout<<"請輸入梯形的高:";
cin>>z;
cout<<"上底為:"<<x<<"、下底為:"<<y<<"、高為:"<<z<<"的梯形,面積為:"<<(x+y)*z/2<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2