CJCoding With Joseph

Square of Stars

Using nested loops, print a 3x3 square of * characters. Each of the 3 rows has 3 stars followed by a newline:

***
***
***

The output ends with a newline after the last row.

Expected Output:

***
***
***
Topics:
Printing
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.