Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using Java programming make a program that outputs the lyrics for Ninety-nine Bottles of Beer on the Wall. Your program should print the number of

Using Java programming

make a program that outputs the lyrics for "Ninety-nine Bottles of Beer on the Wall." Your program should print the number of bottles in English, not as a number. For example: Ninety-nine bottles of beer on the wall, Ninety-nine bottles of beer, Take one down, pass it around, Ninety-eight bottles of beer on the wall. ... One bottle of beer on the wall, One bottle of beer, Take one down, pass it around, Zero bottles of beer on the wall.

Your program should not use ninety-nine output statements! Design your program with a class namedBeerSongwhose constructor takes an integer parameter that is the number of bottles of beer initially on the wall. If the parameter is less than zero, set the number of bottles to zero. Similarly, if the parameter is greater than 99, set the number of beer bottles to 99. Then make a public method calledPrintSongthat outputs all stanzas from the number of bottles of beer down to zero. Add any additional private methods you find helpful.

HINT: Stanzas are all same, only a number of bottles is different. Use printf(...) method to form your stanzas.

You can see thelyrics for the song here.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions