新手自学 帮忙找下错误 谢谢...
#include <stdio.h>main()
{
int volume, height, length, width, weight;
printf("Enter height of box: ");
scanf("%d, &height");
printf("Enter length 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 weighe (pounds): %d\n", weight);
getch();
}
编译器显示
警告 noname.c 13: 可能在'height'定义以前使用了它在 main 函数中
警告 noname.c 13: 可能在'length'定义以前使用了它在 main 函数中
警告 noname.c 13: 可能在'width'定义以前使用了它在 main 函数中
研究了半天 也没发现错误在哪 .... 哪位帮忙看下 谢谢了