返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. float getArea(float a, float b);
  5. int main()
  6. {
  7.    float a, b;
  8.    re:
  9.    cout<<"請輸入三角形底(cm): ";
  10.    cin>>a;
  11.    cout<<"請輸入三角形高(cm): ";
  12.    cin>>b;
  13.    
  14.    cout<<"三角形面積(cm): "<<getArea(a,b)<<endl;
  15.    cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+"<<endl;
  16.    goto re;
  17.    system("pause");  
  18.    return 0;   
  19. }
  20.    float getArea(float c, float d)
  21. {
  22.    return (c*d)/2;
  23. }
複製代碼

TOP

返回列表