C ++ Netbeans对于非常简单的程序没有输出

时间:2016-04-21 16:59:57

标签: c++ netbeans

我正在为一个课程开发一个程序。昨天我到目前为止的进展正在发挥作用。 今天我的输出显示什么。我一直在努力寻找问题 - 并得出结论,NetBeans必定会发生一些事情。下面是我为测试这个而制作的一个程序 - 这不是我的课程项目(我希望这很简单)。

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char** argv) {
    cout<<"anything"<<endl;
    return 0;
}

如果我去运行&gt;测试项目,我收到以下输出:

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory '/cygdrive/c/Users/Pietzyk/Desktop/School/CSCI455/labs/NumsTester/cPlusTribulation'
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/Cygwin-Windows/cplustribulation.exe
make[2]: Entering directory '/cygdrive/c/Users/Pietzyk/Desktop/School/CSCI455/labs/NumsTester/cPlusTribulation'
make[2]: 'dist/Debug/Cygwin-Windows/cplustribulation.exe' is up to date.
make[2]: Leaving directory '/cygdrive/c/Users/Pietzyk/Desktop/School/CSCI455/labs/NumsTester/cPlusTribulation'
make[1]: Leaving directory '/cygdrive/c/Users/Pietzyk/Desktop/School/CSCI455/labs/NumsTester/cPlusTribulation'
"/usr/bin/make" -f nbproject/Makefile-Debug.mk SUBPROJECTS= .build-tests-conf
make[1]: Entering directory '/cygdrive/c/Users/Pietzyk/Desktop/School/CSCI455/labs/NumsTester/cPlusTribulation'
make[1]: *** No rule to make target '.build-tests-conf'.  Stop.
make[1]: Leaving directory '/cygdrive/c/Users/Pietzyk/Desktop/School/CSCI455/labs/NumsTester/cPlusTribulation'
nbproject/Makefile-impl.mk:67: recipe for target '.build-tests-impl' failed
make: *** [.build-tests-impl] Error 2

BUILD TESTS FAILED (exit value 2, total time: 1s)

我不知道这意味着什么。虽然我假设“***没有规则制定目标”这一行必须是我的问题的某种指标。我在班级项目中收到了同样的信息。

运行时我的输出是:

RUN SUCCESSFUL(总时间:79ms)

2 个答案:

答案 0 :(得分:0)

  

如果我去运行&gt;测试项目

测试项目要求您实际进行测试。你不是那么为什么你的构建失败了。

您应该使用“运行/运行”项目或“构建项目”。

或找到此按钮Run button

至于输出:您有项目属性(右键单击项目名称)。选择“运行”类别。这里有几个选项,控制台类型,指向cout的位置。

答案 1 :(得分:0)

与我的大多数编程困境一样 - 这么简单的修复:

在某个地方,我必须在运行的地方找到一些东西&gt;设置主要项目我已经改变了我的主要内容。

感谢长颈鹿队长帮助我解决问题并解决这个问题。