题解 1196: 去掉空格

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

筛选

1196一行解(Python)

摘要:解题思路:将空格替换为空('')注意事项:明确sys.stdin的用法参考代码:import sysfor line in sys.stdin :print(line.replace(……

去掉空格(简单C++)

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

去空格 区分scanf

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=0,t=0,j=0,z=0,h=0,k=0,l=0,m=0; char a[100],b[100],……

1196: 去掉空格(7行)

摘要:解题思路:注意事项:c++多一行,就没用了参考代码:#include <stdio.h> int main(){     char ch;     while((ch = getchar()) ……

不能再复杂了QWQ

摘要:解题思路:    传统思路注意事项:    遇到多个空格直接返回上一行qaq参考代码:#include<stdio.h>#include<string.h>#define HANG 100#defin……

1196: 去掉空格

摘要:解题思路:(1)思路:           ①while循环遍历,输入各字符串,                      ②char c2[80]={"End of file"};  //设置结束条……

去掉空格C语言

摘要:解题思路:首先赋值,利用循环函数,依次判断,只要遇到空格,就暂时调出循环,否则就打印该值注意事项:参考代码:#include"stdio.h"#include"string.h"int main(){……