常用函式 C C (字串操作函式單列)

2021-08-11 14:26:13 字數 631 閱讀 5147

1、函式名: ceil

用 法: double ceil(double x);

功 能: 返回大於或者等於指定表示式的最小整數

標頭檔案:math.h

2、fabs求double、float的絕對值;

abs求整數的絕對值

3、atoi,atof:

ascll to int,ascll to float

4、對於三角函式,cos、sin、tan等

用的是弧度,用的是弧度,用的是弧度

那麼角度轉換為弧度的方法為

#define pi 3.1415927

x=(ct/180*pi);

x為弧度,ct為角度

同理,cos,tan,asin,atan,acos都是用的弧度哦,標頭檔案:math.h

5、容器函式:

非成員函式:

copy():

reverse():反轉容器內的內容,引數為反轉範圍的迭代器

6、求對數

c++函式中的log函式是以e自然數(值約為2.71828)為底,log的換底公式為:log(a)(b) = log(c)(b) / log(c)(a),所以求以10為方法為:log(a) / log(10)

exp()函式是求e的多少次冪

字串操作常用函式

puts printf s p gets 記憶體是否合法 scanf s p strlenmemset memset params初始化物件,初始化成什麼字元,多大 strcpy strcpy 目標,複製物件 strncpy 拷貝的最大長度 strncpy 目標,複製物件,長度 strcat str...

oralce 字串操作常用函式

to number 語法 to number string format nlsparams 目的 將char或varchar2型別的string轉換為乙個number型別的數值,如果指定了format,那麼string應該遵循相應的數字格式。nlsparams的用來指定小數點和錢分位分隔符,以及貨...

C C 字串處理函式

c include 1.字串長度 extern int strlen char s 返回s的長度,不包括結束符null 2.字串比較 extern int strcmp char s1,char s2 extern int strncmp char s1,char s2,int n 比較字串s1和s...