Pls find error in my code

pls help me find the error in my code

Hi @prabhsim2627_d56bfdda3da10bc9 please send the code on ide.codingblocks.com
Write ( copy paste)
Save (ctrl +s)
Send the url of the page

done! pls help finding error

hi @prabhsim2627_d56bfdda3da10bc9 send the link also

hi @prabhsim2627_d56bfdda3da10bc9,
U misinterpreted the question buddy…
Inverse is here basically inverting the places of any number with its value.

For e.g…,
Before Inverse

  • Places --> 5 4 3 2 1
  • Value —> 3 2 1 4 5

eg : 32145 answer is 12543
here u have got the place of numbers in input
for 1 is 5
for 2 is 4
for 3 is 1
for 4 is 2
and for 5 is 3
just place them in this order 12543

After Inverse

  • Places --> 5 4 3 2 1
  • Value —> 1 2 5 4 3
Algo

1.Declare a Place variable that will keep track of the place number for which we are processing the work.
2.The value can be extracted by performing modulus operator on the given number.
3.In order to inverse the place and the number extracted in points 1 and 2 multiply the place with 10 ^ (rem - 1).
For e.g…, Place = 4 and rem = 3, then multiply place with 100 viz, ( 10 ^ (rem - 1)). 4.Add the number to the previous ans.

for implementation difficulties refer https://ide.codingblocks.com/s/662530

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.