โ Back to Printing
Question 200
Hollow Box
Hollow Box
Using nested loops, print a hollow rectangle that is 4 columns wide and 3 rows tall. Border cells are * and interior cells are spaces:
****
* *
****
The middle row is a star, two spaces, and a star. 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.