- #include<iostream>
- using namespace std;
- float cir(float, float);
- float tri(float);
- float rec(float, float);
- float tra(float, float, float);
- int main()
- {
- float x, y ,z ;
- int a;
- cout<<"請問您要算哪一種的面積??(1)圓形(2)三角形(3)長方形(4)梯形"<<endl;
- cin>>a;
- switch(a)
- {
- case 1:
- cout<<"請輸入圓的半徑: ";
- cin>>x;
- cout<<"圓面積為: "<<cir(x)<<"平方公分"<<endl;
- break;
- case 2:
- cout<<"請輸入底: ";
- cin>>x;
- cout<<"請輸入高: ";
- cin>>y;
- cout<<"三角形的面積為: "<<tri(x,y)<<"平方公分"<<endl;
- break;
-
- case 3:
- cout<<"請輸入底: ";
- cin>>x;
- cout<<"請輸入高: ";
- cin>>y;
- cout<<"長方形的面積為: "<<rec(x,y)<<"平方公分"<<endl;
- break;
- case 4:
- cout<<"請輸入上底: ";
- cin>>x;
- cout<<"請輸入下底: ";
- cin>>y;
- cout<<"請輸入高: ";
- cin>>z;
- cout<<"梯形的面積是: "<<tra(x,y,z)<<"平方公分"<<endl;
- break;
- }
- system("pause");
- return 0;
- }
- float cir(float x)
- {
- return x*x*3.14;
- }float tri(float x, float y)
- {
- return x*y/2;
- }float rec(float x, float y)
- {
- return x*y;
- }float tra(float x, float y ,float z)
- {
- return (x+y)*z/2;
- }
複製代碼 |