所以我决定安装 Eclipse CDT 作为我选择的 IDE。但是,似乎一旦我开始运行需要输入的 C 程序,Eclipse 就决定停止在控制台窗口中运行文件。我尝试在任务管理器中关闭该程序的所有实例,并且在我的计算机上找到的 exe 文件运行良好。我尝试构建文件,然后运行,但 Eclipse 说我“没有什么可构建的”。有任何想法吗?
代码:
#include <stdio.h>
int main(void) {
int length, width, height, volume, weight;
printf("Enter the length of box: ");
scanf("%d", &length);
printf("Enter the height of box: ");
scanf("%d", &height);
printf("Enter the width of box: ");
scanf("%d", &width);
volume = length * width * height;
weight = ((volume/166.0) + 0.5);
printf("Volume(cubic inches) %d\n", volume);
printf("Dimensional weight(pounds): %d\n", weight);
return 0;
}