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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!