i'm new to programming.. and i'm stuck at a problem.. I want my program to identify the separate digits in a given number, like if i input 4692, it should identify the digits and print 4 6 9 2. And yeah, without using arrays..
feedback
|
|
A perfect recursion problem to tackle if you're new to programming... 4692/1000 = 4 4692%1000 = 692 692/100 = 6 692%100 = 92 92/10 = 9 92%10 = 2 You should get the idea for the loop you should use now, so that it works for any number. :) | |||||||||||||||||
feedback
|
|
Haven't written C code in year, but this should work.
| ||||
feedback
|
|
Here is a simple solution if you want to just print the digits from the number.
| |||||||||
feedback
|
|
I think the idea is to have non reapeating digits printed (otherwise it would be too simple)... well, you can keep track of the already printed integers without having an array encoding them in another integer. some pseudo C, to give you a clue:
| |||||||||||
feedback
|