fork download
  1. #include <stdio.h>
  2. #define PI 3.14159 // ค่าคงที่ของ π (Pi)
  3.  
  4. int main() {
  5. float radius; // รัศมีของวงกลม
  6. float area; // พื้นที่ของวงกลม
  7.  
  8. printf("Enter the radius of the circle: ");
  9. scanf("%f", &radius);
  10.  
  11. area = PI * radius * radius; // สูตรพื้นที่วงกลม
  12.  
  13. // แสดงผลพื้นที่ด้วยทศนิยม 2, 3, และ 4 ตำแหน่ง
  14. printf("Area of the circle (2 decimal places): %.2f\n", area);
  15. printf("Area of the circle (3 decimal places): %.3f\n", area);
  16. printf("Area of the circle (4 decimal places): %.4f\n", area);
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
Enter the radius of the circle: Area of the circle (2 decimal places): 0.00
Area of the circle (3 decimal places): 0.000
Area of the circle (4 decimal places): 0.0000