標題:
面積計算 (一) - 三角形
[打印本頁]
作者:
王瑞喻
時間:
2020-7-24 14:22
標題:
面積計算 (一) - 三角形
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳柏恩
時間:
2020-7-24 14: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;
}
複製代碼
作者:
王晏璿
時間:
2020-7-24 14:50
#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;
}
複製代碼
作者:
林秉軒
時間:
2020-7-24 14:51
#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;
}
複製代碼
作者:
黃韋誌
時間:
2020-7-24 14:52
#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;
}
複製代碼
作者:
樂柏謙
時間:
2020-7-24 14:52
#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;
}
複製代碼
作者:
鄭軒濬
時間:
2020-7-24 14:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b;
cout<<"請輸入三角形的底(公分):";
cin>>a;
cout<<"請輸入三角形的高(公分):";
cin>>b;
cout<<"底"<<a<<"公分,高"<<b<<"公分的三角形,面積為"<<a*b/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱玟瑜
時間:
2020-7-24 14:57
#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;
}
複製代碼
作者:
周秉融
時間:
2020-7-24 15:00
#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;
}
複製代碼
作者:
何郡毓
時間:
2020-7-24 15:00
#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 ;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2