12345678
请实现一个函数,把字符串 s 中的每个空格替换成"%20"。示例:输入:s = "We are happy."输出:"We%20are%20happy."限制:0 <= s 的长度 <= 10000
123456789101112131415
class Solution {public: string replaceSpace(string s) { string res; //重新定义一个字符串 for (auto x : s) { if (x == ' ') res += "%20"; else res += x; } return res; }};