Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions