题解 1196: 去掉空格

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

筛选

题解 1196: 去掉空格

摘要:解题思路:注意事项:参考代码:int main(){     char a[100];     int len,i;     char end[]="End of file";     whi……

字符串去掉空格

摘要:解题思路:注意事项:参考代码:#include<string.h>去掉空格int main(){ int i; int j = 4; int n; char arr[1000]; while (j) ……

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

摘要:事实上这道题仍然不需要使用字符串,使用getchar逐个读入然后遇到空格就删去,最后使用putchar输出就可以了。这样应该比目前的优质题解简单不少吧。 ```c # include in……

如何实现输入多行之后 再输出相应的结果

摘要:解题思路:在主函数中定义两个字符串a,b;一个字符串流ss;在第一个while循环中使用a和ss实现多行的输入;在第二个while循环中使用a,ss和b实现相应行数去掉空格之后的输出b。注意事项:参考……

去掉空格 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]ages) { ……

编写题解 1196: 去掉空格

摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){     char a[100];     while(gets(a))     {        kg(a);  ……

1196: 去掉空格

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(……