logo CodeStepByStep logo

printAllBinary

Language/Type: Java backtracking recursion

Write a recursive method named printAllBinary that accepts an integer number of digits and prints all binary numbers that have exactly that many digits, in ascending order, one per line. For example, the call of printAllBinary(3); should print:

000
001
010
011
100
101
110
111

If the number of digits passed is 0 or negative, print no output. Your method must use recursion; do not use any loops.

Method: Write a Java method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.