#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; getchar(); string s; for(int i=0;i<n;i++){ getline(cin,s); cout << s << endl << endl; } while(getline(cin,s)){ string::iterator it1 = s.begin(); string::iterator it2 = find(it1,s.end(),' ');//两个迭代器中间是待输出字符串 string t; while(it1!=s.end()){//此处不能是it2!=s.end() string temp(it1,it2);//初始化字符串 cout << temp << endl << endl; if(it2==s.end()){ break; } else{ it1 = it2+1;//记得加一指向空格下一个字符 it2 = find(it1,s.end(),' '); } } } return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:626 |
C语言程序设计教程(第三版)课后习题9.8 (Java代码)浏览:1674 |
WU-拆分位数 (C++代码)浏览:819 |
1024题解浏览:879 |
母牛的故事 (C语言代码)浏览:1045 |
1050题解(结构体数组与结构体指针的使用)浏览:1216 |
Hello, world! (C语言代码)浏览:916 |
1052题解(链表操作)浏览:782 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:710 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:683 |