標題:
面積計算 (一) - 三角形
[打印本頁]
作者:
tonyh
時間:
2016-9-3 14:13
標題:
面積計算 (一) - 三角形
本帖最後由 tonyh 於 2019-5-4 10:14 編輯
#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;
}
複製代碼
作者:
許紘誌
時間:
2016-9-3 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b;
cout<<"請輸入三角形的底(公分):"<<endl;
cin>>a;
cout<<"請輸入三角形的高(公分):"<<endl;
cin>>b;
cout<<"底"<<a<<"公分"<<"高"<<b<<"公分的三角形,面積為"<<a*b/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2016-9-3 14:46
#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;
}
複製代碼
作者:
譚暐霖
時間:
2016-9-3 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;cout<<x<<"+"<<y<<x+y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾彥翔
時間:
2016-9-3 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;
}
複製代碼
作者:
吳晉榕
時間:
2016-9-3 14:53
#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;
}
複製代碼
作者:
蕭澧邦
時間:
2016-9-3 14:53
#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;
}
複製代碼
作者:
蔡幸融
時間:
2016-9-3 14:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請入三角形的底(公分): ";
cin>>x;
cout<<"請入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分";
system("pause");
return 0;
}
複製代碼
作者:
朱聿謙
時間:
2016-9-3 15:01
#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 ;
}
複製代碼
作者:
洪榜蔓
時間:
2016-9-8 17:54
#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://istak.org.tw/seed/)
Powered by Discuz! 7.2