编写题解 1196: 去掉空格
摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ char a[100]; while(gets(a)) { kg(a); ……
去掉空格(c语言新题解)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int removeSpace(char s[]){ int count=0; i……
c代码记录之去掉空格--水题
摘要:
```c
#include
int main(){
char a;
while((a=getchar())!=EOF)
if(a!=' ')
……
非常简单的思路(C语言)
摘要:解题思路:我们只需要用一个字符数组,存储字符串,然后使用for循环将字符串当中的不是空格的字符输出即可。注意事项:注意写while循环时的循环条件应该是while(gets(a)),而不是自己定义一个……
1196: 去掉空格--容易理解
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void fun(char a[]){ int l=strlen(a); for(int i;……
使用String的replaceAll()方法把" "替换成""
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class Main {
public static void main(String[……
1196: 去掉空格
摘要:解题思路:注意事项:参考代码:while True:
try:
s = input()
print(s.replace(' ', '……
编写题解 1196: 去掉空格(编程入门)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<string.h>
int main()
{
char arr[101]={0};
cha……