1 2 3 4 5 6 7 8 9
|
The MESSAGE – The program should have and store in a multi-dimensional array the character needed for
the message like all the English letters (in all caps: A, B, C, D, etc.), all the Roman digits (Arabic numerals:
e.g. 0, 1, 2, 3, etc.), and 10 symbols (!, ?, $, &, @, %, +, -, dot, comma) to draw with ASCII characters. The
program should have the characters drawn on at least 5 lines. If the text is longer than the console
window, split it on 2 lines (keep a full word per line aka if there is no room for a word, move it to the next
line) and vertically align the logo to middle (vertical). If text needs more than 3 lines, print an error
message. The program should be able to show the user the options for characters (draw them on screen)
and let the user enter the text for the banner. Then it should display the message in the right-hand side of
the box right after the logo.
|