Question: Java recursive reversetriangle method Write a recursive method stars() that takes as a parameter a non-negative integer and generates the following pattern of stars. The
Java recursive reversetriangle method
Write a recursive method stars() that takes as a parameter a non-negative integer and generates the following pattern of stars.
The base case should be n==1.
For example, if the non-negative integer is 10, then the pattern generated is:
**********
*********
********
*******
******
*****
****
***
**
*
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
