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 pints. The method should return the total number of pints. Ex: If the input is 9 2, then the output is: 9 gallons yields 72 pints. 9 gallons and 2 pints yields 74 pints. Note: The total number of pints can be found using (gallons * 8) + pints. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20     import java.util.Scanner;   public class VolumeMethods { publicstaticintconvertVolume(intgallons) { returngallons*8; }   /* Your code goes here */   publicstaticvoidmain(String[] args) { Scannerscnr=newScanner(System.in); intgallonsUsed; intpintsUsed; inttotalPints1; inttotalPints2;   gallonsUsed=scnr.nextInt(); pintsUsed=scnr.nextInt();   totalPints1=convertVolume(gallonsUsed);

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter4: More Object Concepts
Section: Chapter Questions
Problem 8RQ
icon
Related questions
Question

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 pints. The method should return the total number of pints.

Ex: If the input is 9 2, then the output is:

9 gallons yields 72 pints. 9 gallons and 2 pints yields 74 pints.

Note: The total number of pints can be found using (gallons * 8) + pints.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
 
import java.util.Scanner;
 
public class VolumeMethods {
publicstaticintconvertVolume(intgallons) {
returngallons*8;
}
 
/* Your code goes here */
 
publicstaticvoidmain(String[] args) {
Scannerscnr=newScanner(System.in);
intgallonsUsed;
intpintsUsed;
inttotalPints1;
inttotalPints2;
 
gallonsUsed=scnr.nextInt();
pintsUsed=scnr.nextInt();
 
totalPints1=convertVolume(gallonsUsed);
 
 
 
 
AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
steps

Unlock instant AI solutions

Tap the button
to generate a solution

Knowledge Booster
void method
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning