Answered step by step
Verified Expert Solution
Question
1 Approved Answer
#include #include using namespace std; void displayOriginalArt ( ) { / / Your original ASCII art goes here / / Make sure it's between 5
#include
#include
using namespace std;
void displayOriginalArt
Your original ASCII art goes here
Make sure it's between and lines
and has a maximum width of characters per line
void displayHotAirBalloonint size
Your code to display the hot air balloon based on the given size goes here
int main
cout "Program : Hot Air Balloons" endl;
cout "Which option would you like?" endl;
cout Display original graphic" endl;
cout Display Hot Air Balloon" endl;
cout "Your choice: ;
int choice;
cin choice;
if choice
displayOriginalArt;
else if choice
int size;
cout "What is the size of the hot air balloon? ;
cin size;
if size
displayHotAirBalloonsize;
else
cout "Size must be or greater." endl;
else
cout "Invalid choice." endl;
return ;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started