fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void)
  4. {
  5. int h,c,k,V,S;
  6. scanf("%d %d %d",&h,&c,&k);
  7.  
  8. V=h*c*k;
  9. printf("體積=%d",V);
  10.  
  11. S=2*(h*c+h*k+c*k);
  12. printf("表面積=%d",S);
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5288KB
stdin
5 5 5
stdout
體積=125表面積=150