fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. double R,A,n = 3.14159;
  5.  
  6. printf("R: ");
  7. scanf("%lf", &R); // รับค่ารัศมีจากผู้ใช้
  8.  
  9. A = n * R * R; // คำนวณพื้นที่วงกลม
  10.  
  11. printf("A=%.4lf\n", A); // แสดงผลลัพธ์เป็นทศนิยม 4 ตำแหน่ง
  12. return 0;
  13. }
Success #stdin #stdout 0s 5280KB
stdin
100.64
150.00
stdout
R: A=31819.3103