您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
如何理解C++中的atoi 函数,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
在 stdlib.h
中 atoi
函数,可用于将 char
字符串转为 int 整数类型,
语法如下:
/* *描述:将一个char类型转为整数 * *参数: * [in] string:字符串类型 * *返回值:返回char类型对应的整数 */ int atoi(char *string);
//@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
请按任意键继续. . .
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。