c說話尺度庫中字符轉換函數和數字轉換函數。本站提示廣大學習愛好者:(c說話尺度庫中字符轉換函數和數字轉換函數)文章只能為提供參考,不一定能成為您想要的結果。以下是c說話尺度庫中字符轉換函數和數字轉換函數正文
字符轉換為數字:
#include<stdlib.h>
atoi();將字符轉換為整型 例:char ch1;int i=atoi(ch1);
atol();將字符轉化為長整型 例:char ch2;long l=atol(ch2);
atof();將字符轉化為浮點型 例:char ch3;float f=atof(ch3);
strtod(); 將字符串轉化為雙精度類型 例:string str1;double d=strtod(str1);
strtol(); 將字符串轉化為長整型 例:string str2; long int li=strtol(str2);
strtoul(); 將字符串轉化為無符長整型 例:sting str3; unsinged long int uli=str(str3);
數字轉換為字符:
itoa(); 將整型轉化為字符
例:int i; char ch1; itoa(i,ch1,radix);
radix為基數:想要把ch1轉化為十進制則為10,八進制則為8,十六進制則為16
ltoa(); 將長整型轉化為字符 例: long int i li; char ch2; ltoa(li,ch2,radix);
ultoa(); 將無符長整型轉化為字符 例:unsiged long int uli; char ch3; ultoa(uli,ch3,radix);
字符與字符的轉化:
#include<ctype.h>
tolower(); 將一個年夜寫字母轉化為小寫字母
例:char upper=C; char lower=tolower(upper);//得lower=c
toupper(); 將逐個個小寫字母轉化為年夜寫字母
例:char lower=c; char upper=toupper(lower);//得upper=C