题解 1196: 去掉空格

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

筛选

题解 1196: 去掉空格

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

  编写题解 1196: 去掉空格

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void fun(char a[]){    int i, j;    for (i = 0; ……

1196: 去掉空格

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

去掉空格(简单篇)

摘要:解题思路:用while循环输入字符串,当输入"End of file"时结束循环。遍历每次输入的字符串,当遍历到不是空格的字符时,原样输出。遍历到空格时输出&#39;&#39;,也就是什么也不输出。注……

去掉空格C语言

摘要:#include<stdio.h>#include<string.h>int main(){    char str[100],str1[100];int i,k=0;    while(gets(s……