- 题目描述:
-
请实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。
- 输入:
-
每个输入文件仅包含一组测试样例。
对于每组测试案例,输入一行代表要处理的字符串。
- 输出:
-
对应每个测试案例,出经过处理后的字符串。
- 样例输入:
-
We Are Happy
- 样例输出:
-
We%20Are%20Happy
1 #include<stdio.h> 2 #include<string.h> 3 void replaceSpace(char ch[]) 4 { 5 int i = 0; 6 int conlength= 0; 7 int spaceNum = 0; 8 int newLength= 0; 9 char *p1,*p2; 10 while(ch[i] !='