標題:
[作業] 面積計算 (四) - 梯形
[打印本頁]
作者:
方浩葦
時間:
2024-6-1 09:23
標題:
[作業] 面積計算 (四) - 梯形
本帖最後由 方浩葦 於 2024-6-1 09:26 編輯
梯形面積公式: ( 上底 + 下底 ) * 高 / 2
作者:
劉奕劭
時間:
2024-6-1 16:15
#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;
}
作者:
林少謙
時間:
2024-6-1 16:28
#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;
}
作者:
高湘庭
時間:
2024-6-2 17:35
#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;
}
作者:
洪榮辰
時間:
2024-6-3 19:45
#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;
}
複製代碼
作者:
李偈睿
時間:
2024-6-8 16:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z;
cout<<"請輸入梯形的上底"<<endl;
cin>>x;
cout<<"請輸入梯形的下底"<<endl;
cin>>y;
cout<<"請輸入梯形的高"<<endl;
cin>>z;
cout<<"上底"<<x<<"公分,下底"<<y<<"公分,高"<<z<<"公分的梯形,面積是"<<(x+y)*z/2<<"平方公分"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2