Question: One gallon equals 1 6 cups. The following program intends to read a floating - point value from input, convert the value from cups to

One gallon equals 16 cups. The following program intends to read a floating-point value from input, convert the value from cups to gallons, and output the volume in gallons, but the code contains three errors. Find and fix all three errors.
Ex: If the input is 3.1, then the output is:
0.194 gallons
volGals = volCups *16; import java.util.Scanner;
public class CupsToGallons {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
// Modify the following code
int volCups;
int volGals;
volCups = scnr.nextInt();
volGals = volCups *16;
System.out.printf("%.3f gallons
", volGals);
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!