標題:
面積計算 (一) - 三角形
[打印本頁]
作者:
鄭繼威
時間:
2022-11-25 21:01
標題:
面積計算 (一) - 三角形
本帖最後由 鄭繼威 於 2022-12-2 19:33 編輯
三角形面積的計算公式如下:
底X高/2
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x, y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
廖秝瑜
時間:
2022-12-2 19:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x, y;
cout<<"請輸入底: ";
cin>>x;
cout<<"請輸入高: ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2022-12-2 19:45
#include <iostream>
using namespace std;
int main()
{
float x, y;
cout<<"enter the base of the triangle(cm):";
cin>>x;
cout<<"enter the height of the triangle(cm):";
cin>>y;
cout<<"The base is "<<x<<"cm, the height is "<<y<<"cm; therefore, the surface area will be "<<x*y/2<<"square centimeters."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張桔熙
時間:
2022-12-2 19:46
本帖最後由 張桔熙 於 2022-12-2 19:48 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底: ";
cin>>x;
cout<<"請輸入三角形的高: ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂得銓
時間:
2022-12-2 19:47
本帖最後由 呂得銓 於 2022-12-2 19:48 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底:";
cin>>x;
cout<<"請輸入三角形的高:";
cin>>y;
cout<<"底為:"<<x<<"高為:"<<y<<"的三角形,面積為:"<<x*y/2<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
陳寶綸
時間:
2022-12-2 19:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x, y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子豪
時間:
2022-12-2 19:47
#include<iostream>
using namespace std;
int main(){
float x,y;
cout<<"請輸入三角形的底:";
cin>>x;
cout<<"請輸入三角形的高:";
cin>>y;
cout<<"面積為:"<<x*y/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2022-12-2 19:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2022-12-2 19:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底: ";
cin>>x;
cout<<"請輸入三角形的高: ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-12-2 19:50
8
作者:
張絜晰
時間:
2022-12-2 19:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"底= ";
cin>>x;
cout<<"高= ";
cin>>y;
cout<<x<<"*"<<y<<"/2="<< x*y/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2022-12-2 19:53
本帖最後由 蔡沛倢 於 2022-12-2 20:15 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int y;
cout<<"請輸入矩形的底"<<y<<endl;
cin>>y;
int x;
cout<<"請輸入矩形的高"<<x<<endl;
cin>>x;
cout<<"矩形的高是"<<x<<"矩形的底是"<<y<<endl;
cout<<"矩形的面積是:"<<y*x<<"周長是:"<<(y+x)*2<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int y;
cout<<"請輸入三角形的底"<<y<<endl;
cin>>y;
int x;
cout<<"請輸入三角形的高"<<x<<endl;
cin>>x;
cout<<"三角形的高是"<<x<<"三角形的底是"<<y<<endl;
cout<<"三角形的面積是: "<<y<<"*"<<x<<"/2"<<"="<<y*x/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邵凡榛
時間:
2022-12-2 19:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底: ";
cin>>x;
cout<<"請輸入三角形的高: ";
cin>>y;
cout<<"底"<<x<<"公分","高"<<y<<"公分",面積="<<x*y/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曹祁望
時間:
2022-12-2 20:00
#include<iostream>
#include<cstdlib>
using namespace std;
int area()
{
int a, b;
cout<<"請輸入底:";
cin>>a;
cout<<"\n請輸入高:";
cin>>b;
return a*b/2;
}
int main()
{
bool run=true;
string con;
while(run)
{
cout<<"\n此三角形面積為:"<<area()<<endl;
cout<<"想繼續請打1:";
cin>>con;
if(con!="1")
{
run = false;
}
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2