2

所以我决定安装 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;
}
4

1 回答 1

3

我刚试过这个,它奏效了:

转到运行 - 运行配置 - C / C++ - 你的 Exe

单击选项卡“参数”

在工作区部分取消选中“使用默认值”

然后选择exe所在的目录,例如debug

在此处输入图像描述

于 2012-06-04T19:00:21.910 回答