asked 214k views
1 vote
Suppose you have 5 1/2 gallons of milk and want to store them in milk jars that can hold up to 0.75 gallons each. You want to know ahead of time how many completely filled jars you will have. The following program has been written for that purpose. What is wrong with it? Why? How can you fix it?public class MilkJarCalculator{ public static void main(String[] args) { double milk = 5.5; // gallons double jarCapacity = 0.75; // gallons int completelyFilledJars = milk / jarCapacity; System.out.println(completelyFilledJars); }}

1 Answer

6 votes

Answer:

public class MilkJarCalculator

{

public static void main(String[] args)

{

double milk = 5.5; // gallons

double jarCapacity = 0.75; // gallons

//apply the cast here

int completelyFilledJars = (int) (milk / jarCapacity);

System.out.println(completelyFilledJars);

}

}

Step-by-step explanation:

public class MilkJarCalculator

{

public static void main(String[] args)

{

double milk = 5.5; // gallons

double jarCapacity = 0.75; // gallons

//apply the cast here

int completelyFilledJars = (int) (milk / jarCapacity);

System.out.println(completelyFilledJars);

}

}

answered
User Ahti Kitsik
by
8.5k points

No related questions found