Question: In this program, make an upright triangle that contains the numbers 1-5. output should look like: 1 1 2 1 2 3 1 2 3
In this program, make an upright triangle that contains the numbers 1-5. output should look like:
1 1 2 1 2 3 1 2 3 4 1 2 3 4 5
Modify themakeNumberTrianglemethod in the starter code to create this!
public class NumberTriangle { public static void main(String[] args) { // Call makeNumberTriangle makeNumberTriangle(); } // Makes an upright triangle with the numbers 1-5 public static void makeNumberTriangle() { // Your code goes here! } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
