How would I go about taking a number like 123456 and having it print as 1 2 3 4 5 6?
How would I go about taking a number like 123456 and having it print
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As ‘jamesdlin’ has mentioned in his comment, GMan’s approach would work, however you will need to store it in a buffer in order to print out in the correct order (his algorithm would print out “6 5 4 3 2 1” for input 123456). At this point I’d say that it would be much simpler to just use sprintf as ‘therefromhere’ suggested in his answer (if this is not an algorithm class assignment of course).
In my opinion the simplest way to do it would be using recursion, this way you can print out digits in the right order without using buffers.
The recursive implementation is very simple:
Input:
Output:
EDIT: Thanks to Steve Jessop who suggested a correct algorithm for positive integers while I was away. I changed the above method to print out correctly for all ints (positive and negative), without the last space.
Please note that we can avoid checking for negative values in every recursion, by doing the check just once (in the main function or wherever) but I didn’t write it because we would lose more on clarity than gain in performance.