Nested Loops

In this lesson, we will look at nesting a loop within the body of another one.

Problem statement

Imagine that we want to display a square pattern of stars (asterisks), such as:

* * * *
* * * *
* * * *
* * * *

where the number of rows and the number of stars per row are the same. This number is essentially the length of the side of the square. However, we might not know this length in advance. If we ask the user for this value—call it n—we need a loop to display n stars in one row. We need ...