Question: JAVA Write a RECURSIVE method called upsideDownTriangle that will display a triangle made of asterisks. The only parameter is an integer that determines the number
JAVA Write a RECURSIVE method called upsideDownTriangle that will display a triangle made of asterisks. The only parameter is an integer that determines the number of asterisks to print. Do not return anything. For example, if the test call to this method is upsideDownTriangle(5), the output should look like:
*****
****
***
**
*
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
