Identify the bony landmark labeled “A” in the illustration.
Identify the bony landmark labeled “A” in the illustration.
Identify the bony landmark labeled “A” in the illustration.
Questions
Identify the bоny lаndmаrk lаbeled "A" in the illustratiоn.
Prоblem Stаtement: The vоlume аnd аrea оf a cylinder are calculated as: Volume = πr2h Area = 2πrh + 2πr2 Given the radius and height of a cylinder as floating-point (double) numbers, output the volume and area of the cylinder. Hint: Use Math methods and constant variable in your calculations. Output each floating-point value with one digit after the decimal point, which can be achieved using the printf() method. Fill in the missing code statements below to produce the output provided in the following code block. Note that the user input is shown in blue and bold. import java.util.Scanner;public class M02_QuizB { public static void main(String[] args) { // Supply program description output; print "This program will calculate and display the volume and area of a cylinder." to the screen, and end with a newline [code1] // Declare variables Scanner scnr = new Scanner(System.in); double radius, height; double volume, area; // Display prompt and read input for radius [code2a] [code2b] // Display prompt and read input for height [code3a] [code3b] // Calculations volume = [code4a] area = [code4b] // Display results [code5a] [code5b] }}/*This program will calculate and display the volume and area of a cylinder.Enter the radius: 5.2Enter the height: 8.1Volume: 688.1 cubic inchesSurface area: 434.5 square inches*/