- #include<iostream>
- #include<cstdlib>
- #include<cmath>
- using namespace std;
- float triangle(float a,float b);
- int main()
- {
- float a,b;
- cout<<"請輸入三角形的底(公分): "<<endl;
- cin>>a;
- cout<<"請輸入三角形的高(公分): "<<endl;
- cin>>b;
- cout<<"此三角形的面積為"<<triangle(a,b)<<"平方公分!"<<endl;
- system("pause");
- return 0;
- }
- float triangle(float a,float b)
- {
- return a*b/2;
- }
複製代碼 |