problem
1556. Thousand Separator
solution#1: 使用to_string和迭代;
code
solution#2: 从前往后添加;
solution#3: 使用Insert;
参考
1. leetcode_easy_string_1556. Thousand Separator;
完