随笔 - 0  文章 - 5  trackbacks - 0
<2025年7月>
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789

常用链接

留言簿(2)

文章分类

文章档案

教育

信息学奥赛

有用网站

在线OJ

专题测试

租房信息

搜索

  •  

最新评论

istringstream: #include #include #include #include using namespace std; int main(){ istringstream is("100 200"); //初始化字符串流 int a,b; is>>a>>b; cout<>a>>b; cout< #include #include #include using namespace std; int main(){ ostringstream os; os<<"ABC"<<100+200; cout<posted on 2017-11-28 11:13 龙在江湖 阅读(141) 评论(0)  编辑 收藏 引用 所属分类: C++