在C编程中,找到一个圆的面积

在C编程中,找到一个圆的面积

圆是封闭图形。圆上的所有点到圆内一点的距离都相等。中心点称为圆心。点到圆心的距离称为半径。

面积是封闭图形尺寸跨度的定量表示。

圆的面积是圆的尺寸内包围的面积。

计算圆面积的公式,

Area = π*r*r登录后复制

算法

STEP 1: Take radius as input from the user using std input. STEP 2: Calculate the area of circle using, area = (3.14)*r*r STEP 3: Print the area to the screen using the std output.登录后复制