home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / tutorial / 151.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-27  |  298 b   |  18 lines

  1. #include "stdio.h"
  2.  
  3. main( )
  4. {
  5.     float w, h, d;
  6.     
  7.     printf("Enter the width: ");
  8.     scanf("%f", &w);
  9.     
  10.     printf("Enter the height: ");
  11.     scanf("%f", &h);
  12.     
  13.     printf("Enter the depth: ");
  14.     scanf("%f", &d);
  15.     
  16.     printf("The volume of the cuboid is %f units.", w * h * d);
  17. }
  18.