求指导  到底哪里出错了...
											
#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;
}



 
											





 
	    

 
	


 改成英文的还是不行啊
改成英文的还是不行啊										
					
	
 程序代码:
程序代码:



 
										
					
	 
											