0
Take any 6 Digit number and reverse it without using any function loop or any operator
Please anyone solve this
4 Answers
+ 6
Bro please mention your language in the question
If you are using python then you can do this :
x=str(input("Enter 6 digit no."))
rev=x[::-1]
print(rev)
Thanks
+ 4
Hmm would you mind to clarify "without any operations"?
Generally output will remain the same if there's no operation allowed, no? đČ
+ 1
Thanks bro it works
+ 1
Yeah i was having the question in my mind đ