- Course
- Arrays
- Banner command on Unix
Banner command on Unix
Last updated:
8/23/2020
⁃
Difficulty:
Intermediate
Create a C# program that mimics the functionality of the banner function on Unix. Internally you will have to use a multi-dimensional array to store the characters. Note that it is case sensitive.
To test it, request a text from the user and show the result of the banner on screen.
Input
Hello!
Output
# # ###
# # ###### # # #### ###
# # # # # # # ###
####### # # # # # #
# # ##### # # # #
# # # # # # # ###
# # ###### ###### ###### #### ###
Solution