std::string

作者:追风剑情 发布于:2019-6-18 22:05 分类:C++

示例1:to_string()

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. const int SIZE = 4;
  8. string arr[SIZE];
  9. int i;
  10. for (i = 0; i < SIZE; i++)
  11. {
  12. arr[i] = "s" + to_string(i);
  13. }
  14.  
  15. for (i = 0; i < SIZE; i++)
  16. {
  17. cout << (arr[i]) << " ";
  18. }
  19.  
  20. cout << "\nPress any key to continue...";
  21. char pl[20];
  22. cin.getline(pl, 20);
  23. return 0;
  24. }

运行测试

111.png

标签: C++

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号