標題:
函式的建立與執行 (一)
[打印本頁]
作者:
tonyh
時間:
2016-1-16 11:23
標題:
函式的建立與執行 (一)
本帖最後由 tonyh 於 2016-1-16 11:37 編輯
利用函式自訂的技巧, 建立一個專門計算三角形面積的函式.
#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;
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;
void tri()
{
float x,y;
cout<<"三角形的底(公分): ";
cin>>x;
cout<<"三角形的高(公分): ";
cin>>y;
cout<<"此三角形的面積為"<<x*y/2<<"平方公分!"<<endl;
}
int main()
{
tri();
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2016-1-16 11:46
#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;
}
複製代碼
作者:
李知易
時間:
2016-1-16 11:46
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
float tri(float x,float y)
{
return x*y/2;
}
int main()
{
double x,y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2016-1-16 11:46
#include<iostream>
#include<cstdlib>
using namespace std;
void tri()
{
float x,y;
cout<<"三角形的底(公分): ";
cin>>x;
cout<<"三角形的高(公分): ";
cin>>y;
cout<<"此三角形的面積為"<<x*y/2<<"平方公分!"<<endl;
}
int main()
{
tri();
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2