0

Take any 6 Digit number and reverse it without using any function loop or any operator

Please anyone solve this

10th Jun 2019, 1:17 PM
Omkar Chavan
Omkar Chavan - avatar
4 odpowiedzi
+ 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
10th Jun 2019, 1:23 PM
Prince PS[Not_Active]
Prince PS[Not_Active] - avatar
+ 4
Hmm would you mind to clarify "without any operations"? Generally output will remain the same if there's no operation allowed, no? 😲
10th Jun 2019, 1:33 PM
Zephyr Koo
Zephyr Koo - avatar
+ 1
Thanks bro it works
10th Jun 2019, 1:32 PM
Omkar Chavan
Omkar Chavan - avatar
+ 1
Yeah i was having the question in my mind 😅
10th Jun 2019, 1:34 PM
Omkar Chavan
Omkar Chavan - avatar