解题思路:
注意事项:
参考代码:
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <vector> #include <string> #include <algorithm> #include <stdio.h> #include <math.h> using namespace std; int main() { string str; while (getline(cin, str)) { string::iterator it = str.begin(); while (it < str.end()) { if (*it == ' ') it = str.erase(it); else it++; } cout << str << endl; } return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:485 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:438 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:523 |
输入输出格式练习 (C语言代码)浏览:883 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:416 |
1197求助浏览:667 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:585 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:560 |
1250题解浏览:604 |
1073题解浏览:652 |