/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param s string字符串 
 * @return string字符串
 */
char* replaceSpace(char* s ) {
    // write code here
    char* p = s;

    int num = 0;
    while(*p) {
        if(*p == ' ') {
            num++;
        }
        p++;
    }

    char* q = (char*)malloc(sizeof(s) + num*2);
    char* t = q;
    while(*s) {
        if(*s != ' ') {
            *(q++) = *s;
        } else {
            *(q++) = '%';
            *(q++) = '2';
            *(q++) = '0';
        }
        s++;
    }

    return t;
}