Answered step by step
Verified Expert Solution
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started