1 #include <stdio.h>
2
3 int main(){
4 int height = 8, length = 12, width = 10, volume, weight;
5
6 volume = height * width * length;
7 weight = (volume + 165)/166;
8 printf ("Dimensions: %d x %d x %d\n", height, width, length);
9 printf ("Volume (cubic inches): %d\n", volume);
10 printf( "Dimensional Weight: %d", weight);
11
12 return 0;
13 }
14
15