Thousand Separator
Given an integer n, add a dot (".") as the thousands separator and return it in string format.
Example 1:
Input: n = 987
Output: "987"
Example 2:
Input: n = 1234
Output: "1.234"
Constraints:
0 <= n <= 231 - 1
思路一:循环取余
public String thousandSeparator(int n) {
if (n == 0) return "0";
StringBuilder sb = new StringBuilder();
int count = 0;
while (n > 0) {
if (count % 3 == 0 && count > 0) {
sb.insert(0, '.');
}
sb.insert(0, n % 10);
n /= 10;
count++;
}
return sb.toString();
}
标签:count,return,1556,int,987,easy,Input,sb,leetcode
From: https://www.cnblogs.com/iyiluo/p/16874806.html