/home/caleb/ASDV-Java/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Cylinder.java |
package com.calebfontenot.mp1_calebfontenot;
import java.util.Scanner;
@author
public class Cylinder {
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
System.out.print("Enter the radius and length of a cylinder: ");
double radius = input.nextDouble();
double length = input.nextDouble();
double area = radius * radius * 3.14159;
double volume = area * length;
System.out.println("The area is " + area);
System.out.println("The volume of the cylinder is " + volume);
}
}