public class UnitConversion { public static void main(String[] args) { /* I'm sure you know that there are 2 pints in a quart and 4 quarts in a gallon Given that you have x pints (read in from the user), determine how many pints, quarts, and gallons you have. FOR EXAMPLE: 103 pints is the same as 12 gallons, 3 quarts, and 1 pint Please print your answer by using: System.out.println(whateverYouWantToPrint); */ int x = Prompter.promtForInteger("Give me a number of pints!"); //BEGIN CODING HERE } }