58 lines
2.8 KiB
HTML
58 lines
2.8 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Cylinder.java</title>
|
||
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||
|
<style type="text/css">
|
||
|
<!--
|
||
|
body {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
|
||
|
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
|
||
|
table {color: #888888; background-color: #313335; font-family: monospace}
|
||
|
.ST0 {color: #808080; font-family: monospace; font-weight: bold}
|
||
|
.comment {color: #808080}
|
||
|
.whitespace {color: #505050}
|
||
|
.string {color: #6a8759}
|
||
|
.number {color: #6897bb}
|
||
|
.literal {color: #cc7832}
|
||
|
-->
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Cylinder.java</td></tr></table>
|
||
|
<pre>
|
||
|
<span class="comment">/*</span>
|
||
|
<span class="comment"> * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license</span>
|
||
|
<span class="comment"> * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template</span>
|
||
|
<span class="comment"> */</span>
|
||
|
<span class="literal">package</span> com.calebfontenot.mp1_calebfontenot;
|
||
|
|
||
|
<span class="literal">import</span> java.util.Scanner;
|
||
|
|
||
|
<span class="comment">/**</span>
|
||
|
<span class="comment"> *</span>
|
||
|
<span class="comment"> * </span><span class="ST0">@author</span> <span class="comment">caleb</span>
|
||
|
<span class="comment">*/</span>
|
||
|
<span class="literal">public</span> <span class="literal">class</span> Cylinder {
|
||
|
<span class="literal">public</span> <span class="literal">static</span> <span class="literal">void</span> main(String[] args)
|
||
|
{
|
||
|
Scanner input = <span class="literal">new</span> Scanner(System.in);
|
||
|
|
||
|
<span class="comment">// Enter radius of the cylinder</span>
|
||
|
System.out.print(<span class="string">"</span><span class="string">Enter the radius and length of a cylinder: </span><span class="string">"</span>);
|
||
|
<span class="literal">double</span> radius = input.nextDouble();
|
||
|
<span class="literal">double</span> length = input.nextDouble();
|
||
|
|
||
|
<span class="comment">// Compute area and volume</span>
|
||
|
<span class="literal">double</span> area = radius * radius * <span class="number">3.14159</span>;
|
||
|
<span class="literal">double</span> volume = area * length;
|
||
|
|
||
|
<span class="comment">// Display result</span>
|
||
|
System.out.println(<span class="string">"</span><span class="string">The area is </span><span class="string">"</span> + area);
|
||
|
System.out.println(<span class="string">"</span><span class="string">The volume of the cylinder is </span><span class="string">"</span> + volume);
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</pre></body>
|
||
|
</html>
|