Question: CHALLENGE ACTIVITY 6 . 1 2 . 1 : Method name overloading. 5 2 8 0 4 0 . 3 4 8 9 5 2

CHALLENGE
ACTIVITY
6.12.1: Method name overloading.
528040.3489528.qx3zqy7
Jump to level 1
The method convertVolume() has an integer parameter. Define a second convertVolume() method that has two integer parameters. The first parameter is the number of gallons and the second parameter is the number of cups. The method should return the total number of cups.
Ex: If the input is 2,2, then the output is:
2 gallons yields 32 cups.
2 gallons and 2 cups yields 34 cups.
Note: The total number of cups can be found using (gallons *16)+ cups.
import java.util.Scanner;
public class VolumeConverter {
public static int convertVolume(int gallons){
}
return gallons *16 ;
V* Your code goes here */
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
int gallonsUsed;
int cupsused;
int totalcups1;
int totalcups2;
gallonsUsed = scnr. nextInt ();
1
2
3
 CHALLENGE ACTIVITY 6.12.1: Method name overloading. 528040.3489528.qx3zqy7 Jump to level 1

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!