โ Back to Loops
Question 210
Print N Hashes
Print N Hashes
Read an integernfrom standard input, then print exactlyn#characters on one line with no trailing newline. For example, if the input is5, print: ##### Use a loop that runsntimes, printing a single#each pass.
Expected Output:
#####
Topics:
Loops
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.