After I clicked the 'Run' button in Netbeans, it will compile and run and then it will stop at this point :
Click Here
I will have to press any key on the keyboard then it will display the text, but it doesn't allow the user to enter any form of input.
Click Here
Code below, any guidance is helpful.
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int height, length, width, volume, weight;
printf("Enter height of box: ");
scanf("%d", &height);
printf("Enter length of hon: ");
scanf("%d", &length);
printf("Enter width of bow; ");
scanf("%d", &width);
volume = height * length * width;
weight = (volume + 165) / 156;
printf("Volume Cubic Inches: %d\n", volume);
printf("dimensional weight (pounds): %d\n", weight);
return (0);
}