本帖最後由 李泳霖 於 2022-9-9 19:07 編輯
利用自訂函式, 建立計算各種圖形面積的程式.
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- void tri()
- {
- double x,y;
- cout<<"請輸入三角形的底:";
- cin>>x;
- cout<<"請輸入三角形的高:" ;
- cin>>y;
- cout<<"三角形面積為:"<<x*y/2<<"平方公分,"<<endl;
- }
- int main()
- {
- int n;
- cout<<"要計算哪一種形狀的面積?(1)三角形 (2)圓形 (3)矩形 (4)梯形"<<endl;
- cin>>n;
- if(n==1)
- tri();
- system("pause");
- return 0;
- }
複製代碼 |