You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a program that takes an integer as input and return an integer with reversed digit
ordering.
For example
For input 500, the program should return 5.
For input -56, the program should return -65.
For input -90, the program should return -9.
For input 91, the program should return 19.
Entry Challenge C1
Reverse Integer
Write a program that takes an integer as input and
returnan integer withreverseddigitordering.
For example