2

我现在正在尝试在 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
4

2 回答 2

0

试试这个:

#include<iostream>
using namespace std;
int main()
 {
    cout<<"I am stuck here, please do some thing for Me !";
    return 1;
 }
于 2012-12-29T16:18:21.397 回答
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;
         } 
于 2012-12-29T16:27:17.477 回答