write a algorithm to print circumference of a circle if its radius is 3......in easy method...
Answers
Answered by
1
please mark as brainliest
Attachments:
Answered by
1
Answer:
For Java.
class Circumference
{
public static void main(String args[])
{
var r = 3;
/*Radius is given 3, you may replace r with 3 in the below line and remove the above line.*/
System.out.println(2*22/7*r);
}
}
/*Hope it helped you...*/
/*Kindly Mark as Brainliest*/
Similar questions