plss write a bluej program to take out the circumference of circle
please very important
Don't spam
Answers
Answered by
1
/* Java Program Example - Calculate Area Circumference of Circle */ import java.util.Scanner; public class JavaProgram { public static void main(String args[]) { float r; double area, circum; Scanner scan = new Scanner(System.in); System.out.print("Enter Radius of Circle : "); r = scan.nextFloat(); area = 3.14*r*r; circum = 2*3.14*r; System.out.print("Area of Circle = " +area); System.out.print("\nCircumference of Circle = " +circum); } }
Answered by
1
Answer:
here IS your answer dear
Attachments:
Similar questions
Math,
30 days ago
Math,
2 months ago
Hindi,
2 months ago
Math,
10 months ago
Social Sciences,
10 months ago