C++中Int转换成String

举报
ShaderJoy 发表于 2021/12/30 01:00:50 2021/12/30
【摘要】 一、使用atoi说明: itoa( int value, char *string, int radix ); 第一个参数:你要转化的int; 第二个参数:转化后的char*; 第三个参数:你要转化的进制; 举例: //-------------------------------------//功能:C++...









  
  1. //-------------------------------------
  2. //功能:C++ int 转 string (使用atoi)
  3. //环境:VS2005
  4. //-------------------------------------
  5. #include "stdafx.h"
  6. #include <iostream>
  7. using namespace std;
  8. int main(int argc, char* argv[])
  9. {
  10. int n = 30;
  11. char c[10];
  12. itoa(n, c, 2);
  13. cout << "2-> " << c << endl;
  14. itoa(n, c, 10);
  15. cout << "16-> " << c << endl;
  16. itoa(n, c, 16);
  17. cout << "10-> " << c << endl;
  18. system("pause");
  19. return 0;
  20. }










































  
  1. //-------------------------------------
  2. //功能:C++ int 转 string (使用sprintf)
  3. //环境:VS2005
  4. //-------------------------------------
  5. #include "stdafx.h"
  6. #include <iostream>
  7. #include <string>
  8. using namespace std;
  9. int main()
  10. {
  11. int n = 30;
  12. char c[20];
  13. sprintf(c, "%d", n);
  14. cout << c << endl;
  15. sprintf(c, "%o", n);
  16. cout << c << endl;
  17. sprintf(c, "%X", n);
  18. cout << c << endl;
  19. sprintf(c, "%c", n);
  20. cout << c << endl;
  21. float f = 24.678;
  22. sprintf(c, "%f", f);
  23. cout << c << endl;
  24. sprintf(c, "%.2f", f);
  25. cout << c << endl;
  26. sprintf(c, "%d-%.2f", n, f);
  27. cout << c << endl;
  28. system("pause");
  29. return 0;
  30. }















  
  1. //-------------------------------------
  2. //功能:C++ int 转 string (使用stringstream)
  3. //环境:VS2005
  4. //-------------------------------------
  5. #include "stdafx.h"
  6. #include <iostream>
  7. #include <string>
  8. #include <sstream>
  9. using namespace std;
  10. int main()
  11. {
  12. stringstream strStream;
  13. int a = 100;
  14. float f = 23.5566;
  15. strStream << a << "----"<< f ;
  16. string s = strStream.str();
  17. cout << s << endl;
  18. system("pause");
  19. return 0;
  20. }




文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。

原文链接:panda1234lee.blog.csdn.net/article/details/8653897

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。