標題:
[隨堂測驗] 面積計算 (二) - 三角形
[打印本頁]
作者:
張翼安
時間:
2015-10-3 10:06
標題:
[隨堂測驗] 面積計算 (二) - 三角形
面積計算 (二) - 三角形
作者:
張健勳
時間:
2015-10-3 10:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入三角形的高: ";
cin>>x;
cout<<"請輸入三角形的底: ";
cin>>y;
cout<<x<<" 和 "<<y<<" 算出來的三角形面積答案是 "<<x*y*0.5<<endl;
cout<<"本軟體可能由黑夜影武者研發"<<endl;
cout<<"感謝使用"<<endl;
cout<<"請投入100元Thank You"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-10-3 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float h,w;
cout<<"請輸入三角形的高(公分):";
cin>>h;
cout<<"請輸入三角形的底(公分):";
cin>>w;
cout<<"底"<<w<<"公分,高"<<h<<"公分的三角形,面積為"<<h*w/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-10-3 10:59
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入三角形的底(公分): " ;
cin>>x;
cout<<"請輸入三角形的高(公分): " ;
cin>>y;
cout<<"三角形的底為"<<x<<"公分,高為"<<y<<endl;
cout<<"面積為"<<x*y/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-10-3 11:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
float y;
cout << "請輸入三角形的高:" << endl;
cin >> x;
cout << "請輸入三角形的底:" << endl;
cin >> y;
cout << x << "和" << y << "算出來得面積是:" << x * y / 2 << endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-10-3 11:05
#include<iostream>
#include<csydlib>
using namespace std;
int main()
{
int h,w;
cout<<"請輸三角形的底:";
cin>>w;
cout<<"請輸入三角形的高:";
cin>>h;
cout<<"三角形的底"<<w<<"三角形的高"<<h<<endl;
cout<<"三角形的面積"<<w*h/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-10-3 11:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
float t,m;
cout<<"請輸入三角形的底:"<<endl;
cin>>t;
cout<<"請輸入三角形的高";
cin>>m;
cout<<"底"<<t<<"高"<<m<<",算的面積是"<<t*m/2<<end1;
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2