1mport java.uti. Scanner; public class ballons { static void getLength() { System.out.println("Length of the room (in cm)? "); Scanner sc=new Scanner(System.in); double length=sc.nextDouble(); getwidth(length); //f // // static void getWidth(double length) { System.out.println("Width of the room (in cm)? "); Scanner sc=new Scanner(System.in); double width=sc.nextDouble(); getHeight(length,width); } //fu // // // 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); } 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;

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
icon
Related questions
Question

b) Explain step by step Exactly what the code does and how the output is printed

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;
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();
}
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
steps

Step by step

Solved in 7 steps

Blurred answer
Knowledge Booster
Arrays
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
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education