c 中cmath函式庫(學生筆記)

2021-09-02 22:00:06 字數 460 閱讀 8644

c++中cmath是乙個重要的數學函式庫。呼叫時必須包含cmath主檔案。

#include

#include

其常用函式原型:

int abs(int n) 求n的絕對值

double cos/sin/tan(double x) 求x的三角函式值(x為弧度值)

double exp(double x) 求e的x次方

double fabs(double x) 求x的絕對值

double log(double x) 求x的自然對數

double log10(double x) 求x的對數(10為底)

double pow(double x,double y) 求x的y次方

double sqrt(double x) 求x的平方根

cmath無法識別π的數值,所以在輸入數值計算三角函式時應先換為弧度,π以3.1415926…表示。

標頭檔案 cmath 函式庫

cmath是c 語言中的庫函式,其中的c表示函式是來自c標準庫的函式,math為數學常用庫函式。cmath中常用庫函式 int abs int i 返回整型引數i的絕對值 double fabs double x 返回雙精度引數x的絕對值 long labs long n 返回長整型引數n的絕對值 ...

C 中ctype函式庫

int isalpha int ch 若ch是字母 a z a z 返回非0值,否則返回0 int isalnum int ch 若ch是字母 a z a z 或數字 0 9 返回非0值,否則返回0 int isascii int ch 若ch是字元 ascii碼中的0 127 返回非0值,否則返回...

C語言函式庫

從今天開始,慢慢的寫全c語言函式庫的函式使用 1.函式名 atoi 功 能 把字串轉換成長整型數 用 法 int atoi const char nptr 需要傳進乙個char型別的指標 程式例 include include int main void 2.abort 功 能 異常終止乙個程序 用...