static void calRoomVolume(double length, double width, double height,double ballonVolume) { System.out.println("Your room volume is "+(length*width*height)/1000000+" m3"); noofBallons ((1length*width*height)/1000000, ballonVolume); } 1 static void noOfBallons(double roomVolume, double BallonVolume) { System.out.println("You need "+(int)(roomVolume/BallonVolume)+" balloons."); 7 8 20 public static void main(String[] args) { 4 getLength(); 5 ( ר
static void calRoomVolume(double length, double width, double height,double ballonVolume) { System.out.println("Your room volume is "+(length*width*height)/1000000+" m3"); noofBallons ((1length*width*height)/1000000, ballonVolume); } 1 static void noOfBallons(double roomVolume, double BallonVolume) { System.out.println("You need "+(int)(roomVolume/BallonVolume)+" balloons."); 7 8 20 public static void main(String[] args) { 4 getLength(); 5 ( ר
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
c) Test two of the methods in this code.

Transcribed Image Text:3 import java.util.Scanner;
4
5 public class ballons {
6
static void getLength()
{
System.out.println("Length of the room (in cm)? ");
Scanner sc=new Scanner (System.in);
double length=sc.nextDouble();
getwidth(length);
}
//fur
8
9
1
_2
.3
_4
5
static void getwidth(double length)
//fune
System.out.println("Width of the room (in cm)? ");
Scanner sc=new Scanner(System.in);
double width=sc.nextDouble();
getHeight(length,width);
}
L7
8
/a:
//ta
/ca
2
3
static void getHeight(double length, double width)
{
System.out.println("Height of the room (in cm)? ");
Scanner sc=new Scanner(System.in);
double height=sc.nextDouble();
double balloonVolume=getBalloonVolume();
calRoomVolume(length,width, height, balloonVolume);
/-
4
25
27
=1
=2
3
=4
5
}
static double getBalloonVolume()
{
System.out.println("What is the balloon volume (in m3)? ");
Scanner sc=new Scanner(System.in);
double volume=sc.nextDouble();
return volume;
![39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57 }
static void calRoomVolume (double length, double width, double height,double ballonVolume)
{
System.out.println("Your room volume is "+(length*width*height)/1000000+" m3");
noofBallons((length*width*height)/1000000, ballonVolume);
}
static void noofBallons (double roomVolume, double BallonVolume)
{
System.out.println("You need "+(int)(roomVolume/BallonVolume)+" balloons.");
}
public static void main(String[] args) {
getLength();
}](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fa959c3e2-24d7-4bac-89a8-7a621a28f6f4%2F23ee999c-1ebe-4d2c-983b-2429a07678ca%2F7mgnsuh_processed.png&w=3840&q=75)
Transcribed Image Text:39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57 }
static void calRoomVolume (double length, double width, double height,double ballonVolume)
{
System.out.println("Your room volume is "+(length*width*height)/1000000+" m3");
noofBallons((length*width*height)/1000000, ballonVolume);
}
static void noofBallons (double roomVolume, double BallonVolume)
{
System.out.println("You need "+(int)(roomVolume/BallonVolume)+" balloons.");
}
public static void main(String[] args) {
getLength();
}
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 steps with 2 images

Knowledge Booster
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.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education