摘要: #include <iostream> #include <cstdio> #include <sstream> ///头文件 using namespace std; int main() { ostringstream s; s << 100 << 12.2; cout << s.str(); 阅读全文
posted @ 2020-07-22 11:34 xiongbing 阅读(166) 评论(0) 推荐(0) 编辑