Question: design a nested loop that displays 10 rows of # characters. There should be 15 # characters in each row. Need to show this in
design a nested loop that displays 10 rows of # characters. There should be 15 # characters in each row.
Need to show this in psuedocode. This is what I have so far....
Declare Integer hashNum
Declare Integer numRows
Declare String hash = "#"
Constant Integer MAX_HASH = 15
Constant Integer MAX_ROWS = 10
For numRows = 1 To MAX_ROWS
Dispaly hash
For hashNum = 1 to MAX_HASH
hash = hash + "#"
End For
End For
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
