/** * 给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。 */ public class ReverseInteger { public int reverse(int x) { return 0; } }