Q:

Java Program To Calculate Area Of Circle

0

Java Program To Calculate Area Of Circle by getting the user input.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.Scanner;
public class demo1 
{
   public static void main(String args[]) 
    {         
      Scanner input= new Scanner(System.in);        
         System.out.println("Enter the radius:");
         double r= input.nextDouble();
         double  area=(22*r*r)/7 ;
         System.out.println("Area of Circle is: " + area);      
   }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now