Write a program that asks the user to enter a number of pounds and then prints the equivalent number of ounces. (1 pound is 16 ounces.) Then, rewrite the program so that it repeats itself until the user wants to quit. Use a question-type loop. Make sure to follow the patterns introduced in the lesson closely, and make sure that you assume that the user may not want to execute the loop even once.
Also, don't forget to use a named constant for the number 16.
Sample output:
Is there a pounds to convert (Y or N)? Y enter pounds: 4 4 pounds is 64 ounces. Is there another pounds to convert? Y enter pounds: 3 3 pounds is 48 ounces. Is there another pounds to convert? Y enter pounds: 2 2 pounds is 32 ounces. Is there another pounds to convert? N