c++怎样将一个数字转化为字符串

2024-12-04 19:33:00
推荐回答(2个)
回答1:

利用现成的函数,举例:int i=17; char str[256]; itoa(i,str,10); //结果str中会存放"17"
利用输出语句,举例: int i=17; char str[256]; sprintf(str,"%d",i); //结果str中会存放"17"

回答2:

用itoa或者ltoa函数就办了