圓是封閉圖形。圓上的所有點到圓內一點的距離都相等。中心點稱為圓心。點到圓心的距離稱為半徑。
面積是封閉圖形尺寸跨度的定量表示。
圓的面積是圓的尺寸內所包圍的面積。
計算圓面積的公式,
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.
int r,圓的半徑
float area,使用公式計算的圓面積。 p>
現場示範
#include <stdio.h> int main(){ int r = 8; float area = (3.14)*r*r; printf("The area of the circle is %f",area); return 0; }
The area of the circle is 200.96
以上是在C編程中,求圓的面積的詳細內容。更多資訊請關注PHP中文網其他相關文章!