fork download
  1. ////66361297 ชุติมา คำมีภา
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5.  
  6. int main()
  7. {
  8. // ประกาศตัวแปร
  9. // R คือ รัศมี
  10. // VOLUME คือ ปริมาตร
  11. // Pi คือ 3.14159
  12. double R,VOLUME,Pi = 3.141592;
  13.  
  14. // รับ input
  15. scanf("%If", &R);
  16.  
  17. // แสดงการคำนวณ
  18. VOLUME = (4.0/3.0)*Pi*R*R*R;
  19.  
  20. // แสดงผลลัพธ์จากการคำนวณ
  21. printf("Volume = %.3If\n", VOLUME);
  22.  
  23. return 0;
  24.  
  25. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
Volume = %.3If