返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. float tri(float x ,float y)
  5. {
  6.       return x*y/2;
  7. }
  8. int main()
  9. {
  10.     float x ,y;
  11.     cout<<"請輸入三角形的底:";
  12.     cin>>x;
  13.     cout<<"請輸入三角形的高:";
  14.     cin>>y;
  15.     cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形面積為:"<<tri(x,y)<<"平方公分"<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

返回列表