對任意一個(gè)數(shù)倒序并去0輸出
比如,輸入123,輸出321;
? ? ? ? ? ?輸入120305,輸出5321;
int num = Convert.ToInt32(Console.ReadLine());
while (num!=0)
{
? ? ? ?int wei = num % 10;
? ? ? ?if (wei != 0)
? ? ? ? { Console.Write(wei); }
? ? ? ? num /= 10;
}
標(biāo)簽: