
Explanation of Solution
Program:
//Import required packages
import java.util.Stack;
//Definition of class Test
public class Test
{
//Declare the variable
public int top;
//Definition of main method
public static void main(String[] args) {
//Call the method
waysToClimb(4);
}
//Definition of method waysToClimb()
public static void waysToClimb(int stairs)
{
//Create an object for stack
Stack<Integer> value = new Stack<Integer>();
//Call the recursive method waysToClimn()
waysToClimb(stairs, value);
}
//Definition of method waysToClimn
private static void waysToClimb(int stairs, Stack<Integer> value)
{
//Check whether the staris less than or equal to 0
if (stairs <= 0)
{
//Print the value
System.out.println(value);
}
//Otherwise
else {
//Push the value to the stack
value.push(1);
//Call the recursive method waysToClimb
waysToClimb(stairs - 1, value);
//Pop the value from the stack
value...

Want to see the full answer?
Check out a sample textbook solution
Chapter 12 Solutions
MyProgrammingLab with Pearson eText -- Access Code Card -- for Building Java Programs
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





