首頁 > 後端開發 > C++ > 主體

在C編程中,求圓的面積

WBOY
發布: 2023-08-25 22:57:10
轉載
1288 人瀏覽過

在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,使用公式計算的圓面積。

 現場示範

#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
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板