Computer Science, asked by abhishekdaniel, 4 months ago

Write a program to calculate the radius of circle using formula
radius = 7*area22
input the area through parameters [7]​

Answers

Answered by SwapnilMehta
0

Answer:

class ar

{

void rad(double area)

{

double radius =Math.sqrt(7*(area/22));

System.out.println("Radius="+radius);

}

}

Please Subscribe my Youtube Channel Study To Study ICSE-Swapnil Mehta for more Java programs

Explanation:

Hope this will help you

Mark me as brainlist

Thank you

Answered by Anonymous
1

import java.util.*;

public class Radius

{

public static void main (String args[])

{

Scanner in = newScanner(system.in);

double a , rad;

System.out.println(" Enter the area :" +a);

a=in.nextdouble;

rad= Math.sqrt(7*(a/22));

System.out.println("Radius =" +rad);

}

}

hope it helps you....

mark as brainliest plzz ❤️

Similar questions