Question
Write a C++ program that will display the lyrics to X number of soda on the wall. Prompt the user for the initial number of
Write a C++ program that will display the lyrics to "X number of soda on the wall". Prompt the user for the initial number of bottles of soda on the wall (1 - 99). Using a loop in main(), call a function to determine how many bottles are left, and then another that will display the lyrics. For example, if the initial number is 3, the following would be displayed: 3 bottles of soda on the wall. 3 bottles of soda. Take 1 down, pass it around. 2 bottles of soda on the wall. 2 bottles of soda on the wall. 2 bottles of soda. Take 1 down, pass it around. 1 bottle of soda on the wall. 1 bottle of soda on the wall. 1 bottle of soda. Take 1 down, pass it around. 0 bottles of soda on the wall. Note that when there is only 1 bottle left, "bottles" becomes "bottle". Your function should account for this. Good luck and have fun!
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