면적은 그림의 범위를 2차원으로 나타내는 양입니다. 원의 면적은 2차원 평면에서 원으로 덮인 면적입니다.
원의 넓이를 구하려면 반지름[r] 또는 지름[d](2* 반지름)이 필요합니다.
면적 계산에 사용되는 공식은 (π*r 2 ) 또는 {(π*d 2 )/4}.
예시 코드
반지름을 사용하여 원의 면적을 구합니다.
#include <stdio.h> int main(void) { float pie = 3.14; int radius = 6; printf("The radius of the circle is %d \n" , radius); float area = (float)(pie* radius * radius); printf("The area of the given circle is %f", area); return 0; }
출력
The radius of the circle is 6 The area of the given circle is 113.040001
예시 코드
Math.h 라이브러리를 사용하여 반지름을 사용하여 원의 면적을 찾으려면. 수학 클래스의 pow 함수를 사용하여 주어진 숫자의 제곱을 찾습니다.
#include <stdio.h> int main(void) { float pie = 3.14; int radius = 6; printf("The radius of the circle is %d \n" , radius); float area = (float)(pie* (pow(radius,2))); printf("The area of the given circle is %f", area); return 0; }
출력
The radius of the circle is 6 The area of the given circle is 113.040001
예시 코드
지름을 사용하여 원의 넓이를 구합니다.
#include <stdio.h> int main(void) { float pie = 3.14; int Diameter = 12; printf("The Diameter of the circle is %d \n" , Diameter); float area = (float)((pie* Diameter * Diameter)/4); printf("The area of the given circle is %f", area); return 0; }
출력
The Diameter of the circle is 12 The area of the given circle is 113.040001