home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
SASC6571.LZX
/
tutorial
/
151.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1997-03-27
|
298 b
|
18 lines
#include "stdio.h"
main( )
{
float w, h, d;
printf("Enter the width: ");
scanf("%f", &w);
printf("Enter the height: ");
scanf("%f", &h);
printf("Enter the depth: ");
scanf("%f", &d);
printf("The volume of the cuboid is %f units.", w * h * d);
}