链接:https://leetcode-cn.com/problems/ti-huan-kong-ge-lcof/
class Solution { public: string replaceSpace(string s) { string res; for (auto x: s) { if (x == ' ') res += "%20"; else res += x; } return res; } };