问题:翻转数字分析:注意初始化
class Solution { public: int reverse(int x) { int y=0; while(x) { y=(y*10)+x%10; x/=10; } return y; } };