Write "3" in C++ program that prints a LOGO consisting of 20 X 20 characters, make it colorful

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write "3" in C++ program that prints a LOGO consisting of 20 X 20 characters, make it colorful

Expert Solution
Step 1: Algorithm :

Algorithm: Create a Colorful 3 in a 20x20 Grid

1. Define a function called setConsoleColor that takes a color code as a parameter.
   - Print the ANSI escape code to set the text color to the specified code.

2. Define a function called resetConsoleColor.
   - Print the ANSI escape code to reset the text color to the default.

3. Define a function called printCharacter that takes a character and a color code as parameters.
   - Call setConsoleColor with the specified color code.
   - Print the character.
   - Call resetConsoleColor to reset the color.

4. In the main function:
   - Define constants for the width and height of the 20x20 grid.
   - Define color codes for the background and the number "3".

5. Create an array of strings called "three" to define the ASCII art for the number "3" in a 20x20 grid.

6. Use nested loops to iterate through the grid:
   - For each position (x, y), check the character in the "three" array.
   - If the character is a space, call printCharacter with a space and the background color code.
   - If the character is '#', call printCharacter with '#' and the color code for the number "3".

7. Display the colorful "3" in the 20x20 grid using ANSI colors.

8. End the program.


steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Structure chart
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education