Leetcode日记(7)---Reverse Integer

  • cplusplus

抽取位数(x%10)
int x ,i=1(记录数字的位数)

10^(i-1);

int weichuli = x/10; tiqushu = x%10;i++

你可能感兴趣的:(LeetCode)