幾個常用的數學函式

2022-07-14 21:36:22 字數 1083 閱讀 6477

void abort(void);

功 能: 異常終止乙個程序

int abs(int i);

功 能: 求整數的絕對值

double acos(double x);

功 能: 反余弦函式

double asin(double x);

功 能: 反正弦函式

double atan(double x);

功 能: 反正切函式

double atan2(double y, double x);

功 能: 計算y/x的反正切值

double atof(const char *nptr);

功 能: 把字串轉換成浮點數

int atoi(const char *nptr);

功 能: 把字串轉換成整型數

long atol(const char *nptr);

功 能: 把字串轉換成長整型數

double pow(const double x,const double y);

功 能:求x的y次方

幾個數學函式

今天在nw7裡面測試了一段 那幾個數學函式返回結果竟然是錯的,讓我大吃一驚,且看 data n type p decimals 2.data m type p decimals 2 value 5.55 n abs m write abs n.n sign m write sign n.n ceil...

常用的數學函式

函式名 含義abs 絕對值函式 ceil x 天花板函式 返回大於或者等於x的最小整數對於的浮點值。如ceil 2.5 的結果是 2.0,ceil 2.6 3。floor x 地板函式 返回小於或者等於x的最大整數對應的浮點值。如ceil 2.5 的結果是 3.0,ceil 2.6 2。round ...

常用的幾個函式

隨機數的產生 大多數情況下使用函式 srand 和 rand 即可搞定,這兩個函式包含於標頭檔案 中。為了取得可變的隨機碼,必須在使用rand 前呼叫srand 函式來取得隨機種子,這樣編譯後的程式才在每次執行時可以產生不同的隨機數。例子 srand unsigned time null 一般取系統...