I was wondering what would the coding be if I wanted to make a code which prints out a number of asterisk for the value I give.
For example, If i input the values values: {3, 2, 1}
I would get
**
*
public void stars(int[] values)
, this is the beginning of my code
Thats it:
EDIT by comment:
Produces the following output: