架构师 软件测试 目录概述需求: 设计思路实现思路分析1.软件测试方法 软件测试工具 参考资料和推荐阅读 Survive by day and develop by night. talk for import biz , show your perfect code,full busy,skip hardness,make a better result,wait for c…
atoi和itoa这两个函数头文件均为<stdlib.h>
atoi
atoi全称:array to int,可以把字符串转换为整型
int atoi(const char *nptr);
使用演示:
#1
char str[5];
cin>>str;
int aatoi(str);#2
int a;
aatoi("123");//a…