求指导 到底哪里出错了...
#include <stdio.h>
main( )
{
int height,length,width,volume,weight;
printf("Enter height of box: ");
scanf("%d", &height);
printf("Enter lenght of box: ");
scanf("%d", &length);
printf("Enter width of box: ");
scanf("%d", &width);
volume = height * length * width;
weight = (volume + 165) /166;
printf("Volume (cubic inches);%d\n", volume);
printf("Dimensional weight (pounds): %d\n",weight);
return 0;
}