Computer >> Máy Tính >  >> Lập trình >> lập trình C

C Chương trình cho Chương trình tìm diện tích hình tròn?

Diện tích là đại lượng biểu thị mức độ của hình theo hai chiều. Diện tích hình tròn là diện tích được bao phủ bởi hình tròn trong một mặt phẳng hai chiều.

Để tìm diện tích hình tròn, cần có bán kính [r] hoặc đường kính [d] (2 * bán kính).

Công thức được sử dụng để tính diện tích là (π * r 2 ) hoặc {(π * d 2 ) / 4}.

Mã mẫu

Để tìm diện tích của một hình tròn bằng cách sử dụng bán kính.

#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;
}

Đầu ra

The radius of the circle is 6
The area of the given circle is 113.040001

Mã mẫu

Để tìm diện tích hình tròn bằng bán kính, sử dụng thư viện math.h. Nó sử dụng hàm pow của lớp toán để tìm bình phương của một số nhất định.

#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;
}

Đầu ra

The radius of the circle is 6
The area of the given circle is 113.040001

Mã mẫu

Để tìm diện tích hình tròn bằng Đường kính.

#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;
}

Đầu ra

The Diameter of the circle is 12
The area of the given circle is 113.040001