c++里将int数字转化为字符串该怎么写?

例如int num=123456;要转变为字符串"123456";
2024-12-04 06:29:06
推荐回答(2个)
回答1:

stringstream temp;
temp<temp.str();及为转换后的字符串

回答2:

sprintf(buffer,"%d",num);