JAVAWrite a method that produces the output shown below This
**JAVA**Write a method that produces the output shown below. This output was written by call number 1. In the example, the recursion stopped when it reached four levels deep, but your method should be capable of counting to any specified level.
This was written by call number 2.
This was written by call number 3.
This was written by call number 4.
This ALSO written by call number 4.
This ALSO written by call number 3.
This ALSO written by call number 2.
This ALSO written by call number 1.
.
Solution
public String display1(){
System.out.println(This was written by call number 2);
display2(){
System.out.println(This was written by call number 3);
display3(){
System.out.println(This was written by call number 4);
}
return display1();
}
