Answer:
The solution is written in Java
Explanation:
Firstly create a counter variable, count and initialize it with zero (Line 3).
Next, create Scanner object and prompt the user to input a number between 10 to 100 (Line 4-6).
Create a while loop and set the loop condition as while the count down number is still bigger than zero, the loop should keep going on (Line 8). Next, create an if condition to check if the counter variable reach multiple of 10 times. If not print the current num or else create a new line and then only print the current num (Line 9 -14).
Increment the count by one and decrements the num by one before running the next iteration (Line 15 -16).