標題:
[作業] 函式的建立與執行 (二)
[打印本頁]
作者:
tonyh
時間:
2014-3-1 15:25
標題:
[作業] 函式的建立與執行 (二)
利用自訂函式, 建立計算各種圖形面積的程式.
[attach]838[/attach]
作者:
鎧言
時間:
2014-3-1 16:31
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
float cir(float);
float rec(float,float);
float tra(float,float,float);
int main()
{
int fuck;
float x,y,z;
cout<<"請問您要計算哪一種種形狀的面積 <1>三角形 <2>圓形 <3>長方形 <4>梯形 :"<<endl;
cin>>fuck;
if(fuck==1)
tri(x,y);
else if(fuck==2)
cir(x);
else if(fuck==3)
rec(x,y);
else if(fuck==4)
tra(x,y,z);
else
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
float tri(float a, float b)
{
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"此三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
}
float cir(float a)
{
cout<<"請輸入圓形的半徑(公分): ";
cin>>a;
cout<<"此圓形的面積為"<<a*a*3.14<<"平方公分!"<<endl;
}
float rec(float a, float b)
{
cout<<"請輸入長方形的長(公分): ";
cin>>a;
cout<<"請輸入長方形的寬(公分): ";
cin>>b;
cout<<"此長方形的面積為"<<a*b<<"平方公分!"<<endl;
}
float tra(float a, float b, float c)
{
cout<<"請輸入梯形的上底(公分): ";
cin>>a;
cout<<"請輸入梯形的下底(公分): ";
cin>>b;
cout<<"請輸入梯形的高(公分): ";
cin>>c;
cout<<"此梯形的面積為"<<(a+b)*c/2<<"平方公分!"<<endl;
}
複製代碼
作者:
黃崇維
時間:
2014-3-1 16:32
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
float cir(float);
float rec(float,float);
float tra(float,float,float);
int main()
{
int shit;
float x,y,z;
cout<<"請問您要計算哪一種形狀的面積? <1>三角形 <2>圓形 <3>長方形 <4> 梯形"<<endl;
cin>>shit;
if(shit==1)
tri(x,y);
else if(shit==2)
cir(x);
else if(shit==3)
rec(x,y);
else if(shit==4)
tra(x,y,z);
else
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
float tri(float a,float b)
{
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"此三角形面積為: "<<a*b/2<<"平方公分"<<endl;
}
float cir(float a)
{
cout<<"請輸入圓形的半徑(公分): ";
cin>>a;
cout<<"此圓形面積為約: "<<a*a*3.14<<"平方公分"<<endl;
}
float rec(float a,float b)
{
cout<<"請輸入三角形的長: ";
cin>>a;
cout<<"請輸入三角形的寬: ";
cin>>b;
cout<<"此長方形面積為: "<<a*b<<"平方公分"<<endl;
}
float tra(float a,float b,float c)
{
cout<<"請輸入梯形的上底: ";
cin>>a;
cout<<"請輸入梯形的下底: ";
cin>>b;
cout<<"請輸入梯形的高: ";
cin>>c;
cout<<"此梯形面積為: "<<(a+b)*c/2<<"平方公分"<<endl;
}
複製代碼
作者:
林以諾
時間:
2014-3-2 15:29
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
float cir(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;
if(a==1)
tri(x,y);
if(a==2)
cir(x);
if(a==3)
rec(x,y);
if(a==4)
tra(x,y,z);
system("pause");
}
float tri(float x,float y)
{
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"此三角形的面積為"<<x*y/2<<"平方公分!"<<endl;
}
float cir(float x)
{
cout<<"請輸入圓的半徑(公分): ";
cin>>x;
cout<<"此圓形的面積為"<<x*x*3.14<<"平方公分!"<<endl;
}
float rec(float x,float y)
{
cout<<"請輸入三角形的長(公分): ";
cin>>x;
cout<<"請輸入三角形的寬(公分): ";
cin>>y;
cout<<"此長方形的面積為"<<x*y<<"平方公分!"<<endl;
}
float tra(float x,float y,float z)
{
cout<<"請輸入梯形的上底(公分): ";
cin>>x;
cout<<"請輸入梯形的下底(公分): ";
cin>>y;
cout<<"請輸入三角形的高(公分): ";
cin>>z;
cout<<"此梯形的面積為"<<(x+y)*z/2<<"平方公分!"<<endl;
}
複製代碼
作者:
劉泳鱔
時間:
2014-3-2 20:52
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
float cir(float);
float rec(float,float);
float tra(float,float,float);
int main()
{
int fuckyou;
float x,y,z;
cout<<"請問您要計算哪一種形狀的面積? <1>三角形 <2>圓形 <3>長方形 <4> 梯形"<<endl;
cin>>fuckyou;
if(fuckyou==1)
tri(x,y);
else if(fuckyou==2)
cir(x);
else if(fuckyou==3)
rec(x,y);
else if(fuckyou==4)
tra(x,y,z);
else
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
float tri(float a,float b)
{
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"此三角形面積為: "<<a*b/2<<"平方公分"<<endl;
}
float cir(float a)
{
cout<<"請輸入圓形的半徑(公分): ";
cin>>a;
cout<<"此圓形面積為約: "<<a*a*3.14<<"平方公分"<<endl;
}
float rec(float a,float b)
{
cout<<"請輸入三角形的長: ";
cin>>a;
cout<<"請輸入三角形的寬: ";
cin>>b;
cout<<"此長方形面積為: "<<a*b<<"平方公分"<<endl;
}
float tra(float a,float b,float c)
{
cout<<"請輸入梯形的上底: ";
cin>>a;
cout<<"請輸入梯形的下底: ";
cin>>b;
cout<<"請輸入梯形的高: ";
cin>>c;
cout<<"此梯形面積為: "<<(a+b)*c/2<<"平方公分"<<endl;
//大文豪兼大帥哥的作品 哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈
}
複製代碼
作者:
張瀚仁
時間:
2014-3-7 18:35
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
float cir(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;
if(a==1)
tri(x,y);
if(a==2)
cir(x);
if(a==3)
rec(x,y);
if(a==4)
tra(x,y,z);
system("pause");
}
float tri(float x,float y)
{
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"此三角形的面積為"<<x*y/2<<"平方公分!"<<endl;
}
float cir(float x)
{
cout<<"請輸入圓的半徑(公分): ";
cin>>x;
cout<<"此圓形的面積為"<<x*x*3.14<<"平方公分!"<<endl;
}
float rec(float x,float y)
{
cout<<"請輸入三角形的長(公分): ";
cin>>x;
cout<<"請輸入三角形的寬(公分): ";
cin>>y;
cout<<"此長方形的面積為"<<x*y<<"平方公分!"<<endl;
}
float tra(float x,float y,float z)
{
cout<<"請輸入梯形的上底(公分): ";
cin>>x;
cout<<"請輸入梯形的下底(公分): ";
cin>>y;
cout<<"請輸入三角形的高(公分): ";
cin>>z;
cout<<"此梯形的面積為"<<(x+y)*z/2<<"平方公分!"<<endl;
}
複製代碼
作者:
郭凡瑛
時間:
2014-3-8 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
float cir(float);
float rec(float,float);
float tra(float,float,float);
int main()
{
int fuck;
float x,y,z;
cout<<"請問您要計算哪一種種形狀的面積 <1>三角形 <2>圓形 <3>長方形 <4>梯形 :"<<endl;
cin>>fuck;
if(fuck==1)
tri(x,y);
else if(fuck==2)
cir(x);
else if(fuck==3)
rec(x,y);
else if(fuck==4)
tra(x,y,z);
else
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
float tri(float a, float b)
{
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"此三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
}
float cir(float a)
{
cout<<"請輸入圓形的半徑(公分): ";
cin>>a;
cout<<"此圓形的面積為"<<a*a*3.14<<"平方公分!"<<endl;
}
float rec(float a, float b)
{
cout<<"請輸入長方形的長(公分): ";
cin>>a;
cout<<"請輸入長方形的寬(公分): ";
cin>>b;
cout<<"此長方形的面積為"<<a*b<<"平方公分!"<<endl;
}
float tra(float a, float b, float c)
{
cout<<"請輸入梯形的上底(公分): ";
cin>>a;
cout<<"請輸入梯形的下底(公分): ";
cin>>b;
cout<<"請輸入梯形的高(公分): ";
cin>>c;
cout<<"此梯形的面積為"<<(a+b)*c/2<<"平方公分!"<<endl;
}
複製代碼
作者:
許逸群
時間:
2014-3-8 14:28
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
float cir(float);
float rec(float,float);
float tra(float,float,float);
int main()
{
int fuck;
float x,y,z;
cout<<"請問您要計算哪一種種形狀的面積 <1>三角形 <2>圓形 <3>長方形 <4>梯形 :"<<endl;
cin>>fuck;
if(fuck==1)
tri(x,y);
else if(fuck==2)
cir(x);
else if(fuck==3)
rec(x,y);
else if(fuck==4)
tra(x,y,z);
else
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
float tri(float a, float b)
{
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"此三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
}
float cir(float a)
{
cout<<"請輸入圓形的半徑(公分): ";
cin>>a;
cout<<"此圓形的面積為"<<a*a*3.14<<"平方公分!"<<endl;
}
float rec(float a, float b)
{
cout<<"請輸入長方形的長(公分): ";
cin>>a;
cout<<"請輸入長方形的寬(公分): ";
cin>>b;
cout<<"此長方形的面積為"<<a*b<<"平方公分!"<<endl;
}
float tra(float a, float b, float c)
{
cout<<"請輸入梯形的上底(公分): ";
cin>>a;
cout<<"請輸入梯形的下底(公分): ";
cin>>b;
cout<<"請輸入梯形的高(公分): ";
cin>>c;
cout<<"此梯形的面積為"<<(a+b)*c/2<<"平方公分!"<<endl;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2