题解列表

筛选

1196: 去掉空格

摘要:```cpp #include using namespace std; int main() { char s[1000]; while(gets(s)) {……