C++中的atoi 函数简介
程序员文章站
2022-03-29 08:42:04
目录一.atoi 函数二.atoi 函数函数实战一.atoi 函数在 stdlib.h 中 atoi 函数,可用于将 char 字符串转为 int 整数类型,语法如下:/**描述:将一个char类型转...
一.atoi 函数
在 stdlib.h
中 atoi
函数,可用于将 char
字符串转为 int 整数类型,
语法如下:
/* *描述:将一个char类型转为整数 * *参数: * [in] string:字符串类型 * *返回值:返回char类型对应的整数 */ int atoi(char *string);
二.atoi 函数函数实战
//@author:猿说编程 //@blog(个人博客地址): www.codersrc.com //@file:c语言教程 - c/c++ atoi函数 wchar_t 相互转换 //@time:2021/08/10 08:00 //@motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累! /******************************************************************************************/ #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 函数简介内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!