解题思路:看了题解才知道我是多么的蠢,加油加油,学起来.写的时候大家一定要注意输出格式不要出错了就行!
参考代码:
#include<iostream>
using namespace std;
#include<string>
#include<vector>
int main()
{
vector<string>s;
int n;
string str;
cin >> n;
cin.get();
while(getline(cin, str)){
s.push_back(str);
}
for(int i = 0; i < n; i++){
cout << s[i] << endl << endl;
}
for(int i = n; i < s.size(); i++){
int pos = s[i].find(' ', 0);
while(-1 != pos){
cout << s[i].substr(0,pos) << endl << endl;
s[i] = s[i].substr(pos+1);
pos = s[i].find(' ', 0);
}
cout << s[i] << endl << endl;
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:807 |
矩形面积交 (Java代码)浏览:1281 |
WU-字符串比较 (C++代码)浏览:824 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:761 |
Hello, world! (C++代码)浏览:1778 |
1908题解浏览:680 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |
矩阵乘方 (C语言代码)浏览:1079 |
C二级辅导-求偶数和 (C语言代码)浏览:707 |
淘淘的名单 (C语言代码)浏览:1309 |