I need to print out a square of hashes in the following type of format: #### #### #### #### I would like to have an input which will change the dimensions of the square based on a user's choice. Any idea what is the best way to create a reusable method for this? My problem lies in the fact that I konw how to print a string of characters but changin this into a square leaves me baffled. Maybe I could use a loop for this as well?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Would this work?
Example
would produce
And
would produce
|
|||||||
|
Didn't test but I hope this gives you a good enough idea. If you want to like have a string "square" that just holds all the string in one you could just instead of printing do something like.
|
|||
|
|