C++编程
从键盘输入一个字符串,删除字符串中的所有空格后输出这个字符串。(C++)
#include <iostream> #include <string> #include <algorithm> using namespace std; int main( void ) { string s; // 输入一行 getline( cin, s ); // 删除空格 s.erase( remove(s.begin(),s.end(),' '), s.end() ); // 输出 cout << s << endl; }