a java program that outputs all ninety-nine stanzas of the "Ninety-Nine Bottles of Beer on the Wall" song. Your program should print the number of bottles in English, not as a number with a dash where its needed. For example, Ninety-nine, Eighty-one, etc.
When it gets to zero it should not print the Take one down\Pass it around portion.
Write a method that takes an integer as a parameter and returns a String. The parameter is an integer between 0 and 99, inclusive. The return value is the English equivalent of the integer parameter. Call this method to produce the number of bottles in a loop in the main() method.