题解 1196: 去掉空格

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

去掉空格(简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; #include<string> int main() {     string……

1196: 去掉空格

摘要:#这个代码是适配一次性输入的代码,对于dev或者vs等运行环境一行一行输入的话可能会出现输入一次转换一次的问题,稍微改进即可。 ```cpp #include #include #includ……

(要脸,别举报)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char n;    while(~(scanf("%c",&n)))    {            i……

去掉空格-题解(C++代码)

摘要:#### 原题链接:[去掉空格](https://www.dotcpp.com/oj/problem.php?id=1196 "去掉空格") #### 解题思路: **1、去掉空格的题目,很明……