摘要: (35条消息) c++ stringstream(老好用了)_jllongbell的博客-CSDN博客_stringstream int 转换成string //stringstream 类 stringstream stream; int a =123; string str; stream<< 阅读全文
posted @ 2022-03-01 20:04 Dsad123FFFG6645 阅读(12) 评论(0) 推荐(0)
摘要: #include <iostream>#include <string>#include <algorithm> using namespace std; void reverseString(string &s){ int i, j; for (i = 0, j = s.size() - 1; i 阅读全文
posted @ 2022-03-01 15:23 Dsad123FFFG6645 阅读(40) 评论(0) 推荐(0)