颠倒数字
int n = Convert.ToInt32(Console.ReadLine());
int m = n, x = 0;
while (m>0)
{
x = x * 10 + m % 10;
m /= 10;
}
Console.WriteLine(x);
一天一份别人家的随笔
一周一份自己的印记

浙公网安备 33010602011771号