斯文短靴

文章
7
资源
0
加入时间
3年0月21天

C++进制转换的两种方法

进制的转换stoi函数(<string>)与itoa函数(<stdlib.h>)/*原型:int stoi(string str, size_t* idx = 0, int base = 10);str:欲转换的数据;idx:目标字符串的起始转换地址;base:待转换数据的进制。功能:把一个字符串按照base进制转换成数字,至str的第一个非法字符结束*///...