fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. // 定義變數
  5. float d, w, h, surface_area, volume;
  6.  
  7. // 提示用戶輸入長方體的長、寬、高
  8. printf("請輸入長方體的長 (d): ");
  9. scanf("%f", &d);
  10. printf("請輸入長方體的寬 (w): ");
  11. scanf("%f", &w);
  12. printf("請輸入長方體的高 (h): ");
  13. scanf("%f", &h);
  14.  
  15. // 計算表面積
  16. surface_area = 2 * (d * w + d * h + w * h);
  17.  
  18. // 計算體積
  19. volume = d * w * h;
  20.  
  21. // 輸出結果
  22. printf("長方體的表面積是: %.2f\n", surface_area);
  23. printf("長方體的體積是: %.2f\n", volume);
  24.  
  25. return 0;
  26. }
  27.  
Success #stdin #stdout 0s 5284KB
stdin
5
8
12
stdout
請輸入長方體的長 (d): 請輸入長方體的寬 (w): 請輸入長方體的高 (h): 長方體的表面積是: 392.00
長方體的體積是: 480.00