C ++程序没有显示任何输出?

时间:2012-12-29 16:15:09

标签: android-ndk

我现在正在尝试在eclipse中执行C ++程序,但它没有显示任何内容,我的代码是:

#include<iostream.h>
using namespace std;
int main()
 {
    cout<<"i have stucked here, plz do some thing for Me !";
    return 0;
 }

我认为我不能设置变量路径。它是

%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files\QuickTime\QTSystem\;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Samsung\Samsung PC Studio 3\;C:\soft\cygwin\bin

我的bin路径是

c:\cygwin\bin

2 个答案:

答案 0 :(得分:0)

试试这个:

#include<iostream>
using namespace std;
int main()
 {
    cout<<"I am stuck here, please do some thing for Me !";
    return 1;
 }

答案 1 :(得分:0)

从标题iostream.h中删除“.h”,因为现在.h表格已经从c ++库中弃用。,

这对我来说很好..

       #include<iostream>
       using namespace std;
       int main()
        {
          cout<<"I am stuck here, please do some thing for Me !";
           return 0;
         }