vote up -5 vote down star

Create a recursive function to print a multidigit number vertically. For example, 2378 should be printed

2
3
7
8

Test your program with numbers of different length.

flag
1  
sounds like homework – barkmadley Nov 8 at 0:58
4  
A couple points: 1) This sounds like you want us to do your homework for you. 2) What language is this in? and 3) "Please" never hurts... – Austin Hyde Nov 8 at 0:59
1  
Ok, I've created the function, and tested it with numbers of different length. What now? – Artelius Nov 8 at 1:00
2  
Please don't ask other people to do your homework for you - it won't do you any good. If you have problems doing it yourself, rather show us what you tried and I'm sure there will be someone who can help you. – hjhill Nov 8 at 1:01
1  
@Artelius - you might wanna send the code straight to his C lecturer. – JohnIdol Nov 8 at 1:03
show 2 more comments

6 Answers

vote up 4 vote down

You might find that 2378 % 10 == 8 is useful...

link|flag
vote up 3 vote down

in haskell because thats probably not what your assignment is in and it will not be helpful

print_num = print . unlines . map show . vertnums
vertnums n =
    let (d,m) = divMod n 10
    in  case d of
        0 -> [m]
        x -> vertnums x ++ [m]

more code golf

toString c = [c]
print_num = print . unlines . map toString . show

this also works, i was surprised

print_num = print . unlines . map return . show
link|flag
Thanks for your help but, I am using C language – Diya Roy Nov 8 at 1:14
vote up 3 vote down

PostScript

    /print_vertically {

        % Init all stuff
        /Palatino-Roman 12 selectfont % Long live Hermann Zapf!
        24 720 moveto % Sounds like a safe place to begin printing, for A4 or letter
        0 14.4 rmoveto % little trick to start 1 line higher than we will print

        doprint_vertically % call the main routine

        showpage % We're done!

       } def

    % The main routine
    /doprint_vertically {
        currentpoint exch pop 14.4 sub 24 exch moveto % move down one line
        dup 10 mod 1 string cvs show % compute remainder mod 10 and print 10
        10 idiv dup 0 ne % compute quotient
        { doprint_vertically } % if quotient != 0, recurse
        { pop } % else, clean up the stack
        ifelse % Never got to devise a satisfactory coding style for PostScript...
    } def

SO's pretty printer is really bad at displaying PostScript code... not really surprising ;-)

link|flag
+1 - Brilliant! LOL! – TrueWill Nov 8 at 2:48
Glad you enjoyed it :-) Actually I botched it, it prints upside-down, but I don't think many people will notice! – Arthur Reutenauer Nov 8 at 2:51
1  
Oh cool, brings back memories. For some reason I once decided to write a postscript program that output the traditional reactance-vs-frequency chart, in colors of course... – DigitalRoss Nov 8 at 4:36
1  
I once wrote a PostScript program to print the Mandelbrot set ;-) ... – Arthur Reutenauer Nov 8 at 4:39
1  
So many years since my PostScript synapses fired :) I believe you can do this more simply using the 'forall operator after converting the number to a string using 'cvs : forall pushes each character in the string on the top of the stack as a number between 0/255 : subtracting 48 should get you the digit number itself (for ASCII coded numbers); hopefully, you could then call 'cvs on that to get a string suitable for 'show, then do your translation down the page. Take all this with a "big grain of salt" : those synapses may be much more compromised than just "rusty." :) best, – BillW Nov 8 at 4:49
show 3 more comments
vote up 3 vote down

Brainfuck:

[>,----------][<][>[++++++++++.[-]++++++++++.----------]]

That's about as recursive as I can get it.

link|flag
Great! I wanted to do it in Brainfuck too, originally! – Arthur Reutenauer Nov 8 at 3:53
That being said, I'm not able to do anything with your code... I'm using <a href="muppetlabs.com/~breadbox/software/… Raiter's compiler</a>. – Arthur Reutenauer Nov 8 at 3:57
No guarantees. I only worked it out on paper first. I (think) it should (theoretically) work... – Austin Hyde Nov 8 at 4:08
Writing it out on paper would be what I'd expect from a true Brainfuck programmer, too :-) What I observe when compiled is that it exists right away, without waiting for my input. – Arthur Reutenauer Nov 8 at 4:14
That's odd... I can't really see any reason it would. Maybe adding a >, primer to the beginning? – Austin Hyde Nov 8 at 4:20
show 6 more comments
vote up 3 vote down

Ruby, 5 lines ... Oh wait, this isn't code-golf

#!/usr/bin/ruby
def rp n
  rp n / 10 if n >= 10
  puts n % 10
end
rp ARGV[0].to_i

Clojure, your instructor will love it, trust me

 (defn rp [n]
   (if (>= n 10)
     (rp (quot n 10)))
   (println (rem n 10)))

nroff, a job-interview must-have, oh wait...

.pl 1
.de f
. if \\$1>=10 \{\
.   nr t \\$1/10
.   f \\nt
. \}
. nr t \\$1%10
\\nt
. br
..
.f 2378
link|flag
+1 for code golf – bguiz Nov 8 at 4:53
vote up 2 vote down

In quick-and-dirty python:

def recursive(x):
    if x > 10:
        print recursive(x/10)
    return x%10
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.