標題:
函式的建立與執行 (一)
[打印本頁]
作者:
陳品肇
時間:
2019-7-6 12:58
標題:
函式的建立與執行 (一)
利用自訂函式, 建立一個專門計算三角形面積的程式.
[attach]6830[/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;
}
複製代碼
作者:
吳孟書
時間:
2019-7-6 14:38
#include<iostream>
#include<cstdlib>
#include<cmath>
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;
}
複製代碼
作者:
曲書辰
時間:
2019-7-6 14:39
本帖最後由 曲書辰 於 2019-7-6 14:44 編輯
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
float tri(float,float);
int main()
{
int a,b;
cout<<"輸入三角形的底和高:";
cin>>a;
cin>>b;
cout<<tri(a,b)<<endl;
system("pause");
return 0;
}
float tri(float a , float b )
{
return a*b/2;
}
複製代碼
作者:
王瑞喻
時間:
2019-7-6 14:42
#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;
}
複製代碼
作者:
洪寬瀧
時間:
2019-7-6 14:43
#include<iostream>
#include<cstdlib>
using namespace std;
float tri(float,float);
int main()
{
float bp,gv;
cout<<"請輸入三角形der底:"<<endl;
cin>>bp;
cout<<"請輸入三角形der高:"<<endl;
cin>>gv;
cout<<"此三角形 面積:"<<tri(bp,gv)<<"cm2!!"<<endl;
system("pause");
return 0;
}
float tri(float bp,float gv)
{
return bp*gv/2;
}
複製代碼
作者:
湯郡一
時間:
2019-7-6 14:43
#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;
}
複製代碼
作者:
吳孟修
時間:
2019-7-6 14:44
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2