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:
![](https://hi-static.z-dn.net/files/d02/5dd05b6a96f7827043050ed3db7ae7df.jpg)
![](https://hi-static.z-dn.net/files/dfb/2effbe0030acfbdfec50a8a6f584962c.jpg)
![](https://hi-static.z-dn.net/files/d8a/7f48c44fc80d0a955a27536230e91e35.jpg)
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
English,
5 months ago
Social Sciences,
5 months ago
Social Sciences,
5 months ago
Hindi,
10 months ago
English,
10 months ago
Math,
1 year ago