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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!