- #include<iostream>
- #include<cstdlib>
- using namespace std;
- float getArea(float a, float b);
- int main()
- {
- float a, b;
- re:
- cout<<"請輸入三角形底(cm): ";
- cin>>a;
- cout<<"請輸入三角形高(cm): ";
- cin>>b;
-
- cout<<"三角形面積(cm): "<<getArea(a,b)<<endl;
- cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+"<<endl;
- goto re;
- system("pause");
- return 0;
- }
- float getArea(float c, float d)
- {
- return (c*d)/2;
- }
複製代碼 |