C++ Primer(第5版) 练习 9.18
练习 9.18 编写程序,从标准输入中读取string序列,存入一个deque中。编写一个循环,用迭代器打印deque中的元素。
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
/*************************************************************************> File Name: ex9.18.cpp> Author: > Mail: > Created Time: Mon 26 Feb 2024 08:38:42 PM CST************************************************************************/#include<iostream>
#include<deque>
using namespace std;int main(){deque<string> str;string word;while(cin>>word){str.push_back(word);if(cin.get() == '\n'){break;}}deque<string>::iterator it;for(it = str.begin(); it != str.end(); ++it){cout<<*it<<" ";}cout<<endl;return 0;
}