Computer Science, asked by donajijoy3565, 1 year ago

Calculate area of circle using function in javascript

Answers

Answered by platadevi67
2

Answer:

var r = prompt("enter the radius of the circle");

var area = (22/7)*r*r;

document.write(area);

Answered by samerasudeesh216
2

Answer:

var r = prompt("enter the radius of the circle");

var area = (22/7)*r*r;

document.write(area);

Explanation:

Similar questions