function AreaCircle % AreaCircle prompts the user for a radius r % and then returns the area of the circle % with radius r. r = input('Give the radius '); pi*r^2 end