標題:
函式的建立與執行 (一)
[打印本頁]
作者:
tonyh
時間:
2014-8-9 17:44
標題:
函式的建立與執行 (一)
本帖最後由 tonyh 於 2014-8-16 18:09 編輯
利用自訂函式, 建立一個專門計算三角形面積的程式.
[attach]942[/attach]
#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;
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;
void tri(); //宣告一自訂函式
int main()
{
tri();
system("pause");
return 0;
}
void tri()
{
float a,b;
cout<<"請輸入三角形的底(公分): ";
cin>>a;
cout<<"請輸入三角形的高(公分): ";
cin>>b;
cout<<"此三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
}
複製代碼
作者:
李允軒
時間:
2014-8-9 17:46
#include <iostream>
#include <cstdlib>
#include <cmath>
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;
}
複製代碼
作者:
張峻瑋
時間:
2014-8-9 17:47
本帖最後由 張峻瑋 於 2014-8-9 18:02 編輯
#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;
}
複製代碼
作者:
劉得恩
時間:
2014-8-9 17:48
#include<iostream>
#include<cstdlib>
using namespace std;
long double tri(long double a ,long double b)
{
return a*b/2;
}
int main()
{
long double x,y;
cout<< "請輸入三角形的底(公分):";
cin>>x;
cout<< "請輸入三角形的高(公分):";
cin>>y;
cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分\n";
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-8-9 17:50
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
int main()
{
re:
float x, y;
cout<<"請輸入三角形的底: ";
cin>>x;
cout<<"請輸入三角形的高: ";
cin>>y;
cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分!"<<endl;
system("pause");
goto re;
return 0;
}
float tri(float a,float b)
{
return a*b/2;
}
複製代碼
作者:
張彥承
時間:
2014-8-9 17:51
#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;
goto re;
system("pause");
return 0;
}
float tri(float a,float b)
{
return a*b/2;
}
複製代碼
作者:
劉得旗
時間:
2014-8-9 17:51
#include<iostream>
#include<cstdlib>
using namespace std;
void tri(float,float);
int main()
{
float x,y;
tri(x,y);
system("pause");
return 0;
}
void tri(float a, float b)
{
cout<<"請輸入三角形的底: ";
cin>>a;
cout<<"請輸入三角形的高: ";
cin>>b;
cout<<"此三角形的面積為"<<a*b/2<<"平方公分!"<<endl;
}
複製代碼
作者:
林宇翔
時間:
2014-8-9 17:54
#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;
}
複製代碼
作者:
張郁庭
時間:
2014-8-15 20:23
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2