C++中的atoi 函數簡介
一.atoi 函數
在 stdlib.h
中 atoi
函數,可用於將 char
字符串轉為 int 整數類型,
語法如下:
/* *描述:將一個char類型轉為整數 * *參數: * [in] string:字符串類型 * *返回值:返回char類型對應的整數 */ int atoi(char *string);
二.atoi 函數函數實戰
#include "stdafx.h" #include <stdio.h> #include "windows.h" #pragma warning(disable: 4996) int _tmain(int argc, _TCHAR* argv[]) { printf("atoi函數計算結果 %d \n", atoi("13456")); printf("atoi函數計算結果 %d \n", atoi("0")); printf("atoi函數計算結果 %d \n", atoi("789")); printf("atoi函數計算結果 %d \n", atoi("123.123")); //默認轉為整數 printf("atoi函數計算結果 %d \n", atoi("-9")); system("pause"); return 0; }
輸出:
atoi函數計算結果 13456
atoi函數計算結果 0
atoi函數計算結果 789
atoi函數計算結果 123
atoi函數計算結果 -9
請按任意鍵繼續. . .
到此這篇關於C++中的atoi 函數簡介的文章就介紹到這瞭,更多相關atoi 函數簡介內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!