Computer Science, asked by jhumpasamanta9840, 4 hours ago

write a program in Java to find the area and circumference of a circle where the radius is 12 cm ​

Attachments:

Answers

Answered by theking0001
0

Answer: public class Circle {

public static void main(Sting[] args) {

int result = 0;

int r = 12;

result = 2*22/7*r;

System.out.println(result);

}

}

Similar questions