Question: java code please!! Assignment 4B: Triangle. For this part of the assignment, we will practice using nested loops, meaning a loop inside of another loop.
java code please!! Assignment 4B: Triangle. For this part of the assignment, we will practice using nested loops, meaning a loop inside of another loop. Examples of nested loops are shown in the Appendix. Take a look at the nested for loops in the Appendix. The inner loop (the j loop) would execute 7 times each time the outer loop (the i' loop) executes 1 time. What would this chunk of code do? It would print out a multiplication table with a maximum of 5*7. You need to walk through and understand this code before continuing. For this assignment, you will design a program that prompts the user to enter a number. The program will then print a triangle that has the same number of rows as the inputted number. The sample run is shown below. User input is in bold.
Assignment 4B: Triangle. For this part of the assignment, we will practice using nested loops, meaning a loop inside of another loop. Examples of nested loops are shown in the Appendix. Take a look at the nested for loops in the Appendix. The inner loop (the 'j' loop) would execute 7 times each time the outer loop (the 'i' loop) executes 1 time. What would this chunk of code do? It would print out a multiplication table with a maximum of 5*7. You need to walk through and understand this code before continuing. For this assignment, you will design a program that prompts the user to enter a number. The program will then print a triangle that has the same number of rows as the inputted number. The sample run is shown below. User input is in bold. Sample Output 1 Enter a number: 5 * * * * * * * * * * * * * *
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
