標題:
常用數學函式
[打印本頁]
作者:
鄭繼威
時間:
2024-1-10 03:58
標題:
常用數學函式
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
cout<<abs(-2)<<endl; //絕對值
cout<<ceil(3.14)<<endl; //天花板
cout<<floor(3.14)<<endl; //地板
cout<<max(1,5)<<endl; //較大值
cout<<min(1,5)<<endl; //較小值
cout<<pow(2,3)<<endl; //指數運算
cout<<sqrt(81)<<endl; //平方根
system("pause");
return 0;
}
複製代碼
作者:
李宗儒
時間:
2024-1-17 18:09
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2