首頁  >  文章  >  後端開發  >  在C編程中,求圓的面積

在C編程中,求圓的面積

WBOY
WBOY轉載
2023-08-25 22:57:101275瀏覽

在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.

範例

使用的變數-

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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除

相關文章

看更多