1、使用循环,把每一位数字转换成相应的字符,参考代码如下:include <stdio.h> include <string.h> int main(){ int num, n, i = 0;char str[20], tmp[20];scanf("%d", &num);n = num % 10;while (n>0){ tmp[i++] = n + '0';num = (num - n) / 10;n = num % ...
func FormatInt(i int64, base int) string
string Int64AsString( __int64 value ) { if ( value == 0 ) { return string(0); } bool isNegative = false; string result; if ( value<0 ) { result += string("-"); value = -value; isNegative = true; } int flag = 10; ...
WORD型转string的函数 string WORD2string(WORD w) { char tmpbuff[16]; sprintf(tmpbuff,"%d",w); string res=tmpbuff; return res; } WORD占2个字节,int占4个字节,int64占8个字节,表示数的范围大小不一样
INT64类型的数转为STRING用什么函数好? 只看楼主 收藏 回复 yjyrh001 初级粉丝 1 如题 BambooCaep 小吧主 14 Inttostr 登录百度帐号 下次自动登录 忘记密码? 扫二维码下载贴吧客户端 下载贴吧APP看高清直播、视频! 贴吧页面意见反馈 违规贴吧举报反馈通道 贴吧违规信息处理公示...
fmt.Sprintf("%d", int64(34839212984328))strconv库 func FormatInt(i int64, base int) string