题解 1196: 去掉空格

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

筛选

去掉空格 (C语言代码)

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

编写题解 1196: 去掉空格

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void f(char a[100]){ int i=0,k=0;  while(a[i]!=&#39;\0&#39;)  { if(a……

题解 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) ……

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

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

编写题解 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(……

1196: 去掉空格

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