標題:
函式的建立與執行 (一)
[打印本頁]
作者:
tonyh
時間:
2014-3-1 14:52
標題:
函式的建立與執行 (一)
本帖最後由 tonyh 於 2014-3-1 15:30 編輯
利用自訂函式, 建立一個專門計算三角形面積的程式.
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float); //宣告一個自訂函式
int main()
{
float x,y;
tri(x,y); //呼叫三角形函式
system("pause");
return 0;
}
float tri(float a, float b) //計算三角形的函式
{
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"此三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
}
複製代碼
作者:
劉泳鱔
時間:
2014-3-1 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
int main()
{
float x, y;
tri(x,y);
system("pause");
return 0;
}
float tri(float a, float b)
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
}
複製代碼
作者:
張瀚仁
時間:
2014-3-1 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
int main()
{
float x,y;
tri(x,y);
system("pause");
return 0;
}
float tri(float a, float b)
{
cout<<"請輸入三角形的底(公分):";
cin>>a;
cout<<endl<<"請輸入三角形的高(公分):";
cin>>b;
cout<<endl<<"三角形的面積為"<<a*b/2<<"平方公分"<<endl;
}
複製代碼
作者:
林以諾
時間:
2014-3-1 15:16
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
int main()
{
float x, y;
tri(x,y);
system("pause");
return 0;
}
float tri(float a,float b)
{
cout<<"請輸入三角形的底: ";
cin>>a;
cout<<"請輸入三角形的高: ";
cin>>b;
cout<<"此三角形面積為: "<<a*b/2<<"平方公分!";
}
複製代碼
作者:
黃崇維
時間:
2014-3-1 15:16
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
int main()
{
float x,y;
tri(x,y);
system("pause");
return 0;
}
float tri(float a,float b)
{
cout<<"請輸入三角形的底: ";
cin>>a;
cout<<"請輸入三角形的高: ";
cin>>b;
cout<<"此三角形面積為: "<<a*b/2<<"平方公分"<<endl;
}
複製代碼
作者:
鎧言
時間:
2014-3-1 15:20
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
int main()
{
float x, y;
tri(x,y);
system("pause");
return 0;
}
float tri(float a, float b)
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2