CJCoding With Joseph

Print N Hashes

Read an integer n from standard input, then print exactly n # characters on one line with no trailing newline. For example, if the input is 5, print:

#####

Use a loop that runs n times, printing a single # each pass.

Expected Output:

#####
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
5
This input is automatically fed to your program's stdin
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.