在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.
示例
使用的变量-
圆半径
浮动面积,使用公式计算的圆的面积。
#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
热门推荐
10 医院探望朋友祝福语简短
11 毕业祝福语简短女朋友
12 春节虎年爸妈祝福语简短
13 儿童毕业祝福语 简短6
14 开工仪式横幅祝福语简短
15 孩子日常祝福语大全简短
16 清晨寄语诗句祝福语简短
17 结婚送亲认亲祝福语简短
18 虎年喝酒拜年祝福语简短