Board logo

標題: 常用數學函式 [打印本頁]

作者: 鄭繼威    時間: 2024-1-10 03:58     標題: 常用數學函式

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<abs(-2)<<endl;      //絕對值
  8.     cout<<ceil(3.14)<<endl;   //天花板
  9.     cout<<floor(3.14)<<endl;  //地板
  10.     cout<<max(1,5)<<endl;    //較大值
  11.     cout<<min(1,5)<<endl;    //較小值
  12.     cout<<pow(2,3)<<endl;    //指數運算
  13.     cout<<sqrt(81)<<endl;    //平方根
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 李宗儒    時間: 2024-1-17 18:09

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2