Reverse of a number with leading zeroes

后端 未结 10 1609
庸人自扰
庸人自扰 2021-01-14 05:17

How do we reverse a number with leading zeroes in number ? For ex: If input is 004, output should be 400.

I wrote below program but it works only when n

10条回答
  •  难免孤独
    2021-01-14 05:52

    Once you convert your input to an integer, which you do in line 3, any information about the leading zeroes in the input of the user is lost.

    You'll have to use a string.

提交回复
热议问题