C C 常用的庫函式

2021-09-21 07:34:31 字數 628 閱讀 2436

#include using namespace  std;
函式名稱   返回值

isalnum()  如果引數是字母數字,即字母或者數字,函式返回true

isalpha()  如果引數是字母,函式返回true

iscntrl()  如果引數是控制字元,函式返回true

isdigit()  如果引數是數字(0-9),函式返回true

isgraph()  如果引數是除空格之外的列印字元,函式返回true

islower()  如果引數是小寫字母,函式返回true

isprint()  如果引數是列印字元(包括空格),函式返回true

ispunct()  如果引數是標點符號,函式返回true

isspace()  如果引數是標準空白字元,如空格、換行符、水平或垂直製表符,函式返回true

isupper()  如果引數是大寫字母,函式返回true

isxdigit() 如果引數是十六進製制數字,即0-9、a-f、a-f,函式返回true

tolower()  如果引數是大寫字元,返回其小寫,否則返回該引數

toupper()  如果引數是小寫字元,返回其大寫,否則返回該引數

參考:

技巧 C C 常用庫函式

一 map相關 1 map定義時新增引數 less greater 可以設定map內排序為公升降序 2 map.find val 返回迭代器,失敗是迭代器指標指向map.end 3 map.erase it map.erase it1,it2 map.erase key 二 algorithm庫 1...

C C 數學庫函式

所在函式庫為math.h stdlib.h string.h float.h 1.絕對值 int abs int i 返回整型引數i的絕對值 double cabs struct complex znum 返回複數znum的絕對值 double fabs double x 返回雙精度引數x的絕對值 ...

C C 快速排序庫函式

c 自定義比較函式 庫函式比較函式 命名空間std void qsort void base,size t num,size t size,int comparator const void const void include其中const void a表示宣告了乙個常量指標 a,int a指的是...