write an algorithm to find area of circle please say the I am a student it is a grade 6 question
Answers
Answered by
0
Explanation:
Simple Algo
import math
rad = int(input ("Enter radius of a circle"))
area = math.pi*r*r
Print(area)
Similar questions