Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

ITT Toy Programs

Name: Anonymous 2009-05-25 12:32

def hanoi(height, frm, to, spare):
    if height > 0:
        hanoi(height-1, frm, spare, to)
        print "Moving disk from", frm, "to", to
        hanoi(height-1, spare, to, from)

Name: Anonymous 2009-05-25 15:22

class JavaProgram

        public static void main(String args[])
        {
           /* ... */
        }
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List