answersLogoWhite

0

Assuming you mean how to make a computer program that can do that, and since you didn't specify a language here's the pseudocode:

//area = pi*r^2

function findArea(radius)

pi = 3.14 //Establish a pi variable

rSquared = radius * radius //radius squared variable, makes it look clean

area = pi * rSquared //doing the actual problem

return area //return the area, could also print area

Just translate that and feel free to use any built in functions in your language like a square root function, this should just give you an idea. The double slash marks (//) are comments.

User Avatar

Wiki User

12y ago

Still curious? Ask our experts.

Chat with our AI personalities

BeauBeau
You're doing better than you think!
Chat with Beau
DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
ProfessorProfessor
I will give you the most educated answer.
Chat with Professor

Add your answer:

Earn +20 pts
Q: Find area of a circle with radius?
Write your answer...
Submit
Still have questions?
magnify glass
imp