fork download
  1. #include <stdio.h>
  2. #define PI 3.14159
  3.  
  4. // 円錐の体積を計算する関数
  5. double cone_volume(double radius, double height) {
  6. return (1.0 / 3.0) * PI * radius * radius * height;
  7. }
  8.  
  9. int main() {
  10. double r, h;
  11.  
  12. // 半径と高さの入力を促す
  13. printf("r");
  14. scanf("%lf", &r);
  15. printf("h");
  16. scanf("%lf", &h);
  17.  
  18. // 体積を計算し、表示
  19. double volume = cone_volume(r, h);
  20. printf("円錐の体積は %.2f です\n", volume);
  21.  
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
rh円錐の体積は 0.00 です