刘收获

导航

2016年10月12日 #

杭电2072 统计单词数

摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2072 用set容器来统计单词数,可以排除相同的单词。 #include<iostream>#include<set>#include<string>using namespace std; int main(){ 阅读全文

posted @ 2016-10-12 11:43 沉疴 阅读(443) 评论(0) 推荐(0) 编辑

(转载)getline()函数的用法

摘要: 学习C++的同学可能都会遇到一个getline()函数,譬如在C++premer中,标准string类型第二小节就是“用getline读取整行文本”。书上给的程序如下: int main() { string line: while(getline(cin,line)) cout<<line<<en 阅读全文

posted @ 2016-10-12 10:49 沉疴 阅读(126) 评论(0) 推荐(0) 编辑