Write a program that displays the perimeter of a circle that has a radius of 5.5 using the following formula: perimeter = 2 * radius * p in java code example
Example: Java Program to find the perimeter of the circle
@Test
public void findPerimeterOfTheCircleProgram12() {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter the RADIUS of the Circle: ");
double radius = scanner.nextDouble();
scanner.close();
System.out.println("Perimeter of the Circle having radius " + radius + (2 * Math.PI * radius));
}