本帖最後由 tonyh 於 2014-8-16 18:09 編輯
利用自訂函式, 建立一個專門計算三角形面積的程式.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- float tri(float,float); //宣告一自訂函式
- int main()
- {
- float x,y;
- cout<<"請輸入三角形的底(公分): ";
- cin>>x;
- cout<<"請輸入三角形的高(公分): ";
- cin>>y;
- cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分!"<<endl;
- system("pause");
- return 0;
- }
- float tri(float a, float b)
- {
- return a*b/2;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- float tri(float a, float b)
- {
- return a*b/2;
- }
- int main()
- {
- float x,y;
- cout<<"請輸入三角形的底(公分): ";
- cin>>x;
- cout<<"請輸入三角形的高(公分): ";
- cin>>y;
- cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分!"<<endl;
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- void tri(); //宣告一自訂函式
- int main()
- {
- tri();
- system("pause");
- return 0;
- }
- void tri()
- {
- float a,b;
- cout<<"請輸入三角形的底(公分): ";
- cin>>a;
- cout<<"請輸入三角形的高(公分): ";
- cin>>b;
- cout<<"此三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
- }
複製代碼 |