0

我在 Visual C++ 中有以下第一个代码:

#include <iostream>
using namespace std;

int main()
{
    cout<<"Hello World" << endl;
    system("PAUS");
    return (0);
}

我创建了一个 Win32 控制台应用程序项目。我删除了可用的头文件,我的项目区域如下所示:![在此处输入图像描述][1]

当我右键单击我的cpp文件并单击compile时,我得到以下信息:

========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

但是,当我单击 时Build,cmd 黑屏出现如此之快然后消失,我收到以下错误:

'test2.exe': Loaded 'C:\Users\user\Documents\Visual Studio 2008\Projects\test2\Debug\test2.exe', Symbols loaded.
'test2.exe': Loaded 'C:\Windows\System32\ntdll.dll'
'test2.exe': Loaded 'C:\Windows\System32\kernel32.dll'
'test2.exe': Loaded 'C:\Windows\System32\KernelBase.dll'
'test2.exe': Loaded 'C:\Windows\winsxs\x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.21022.8_none_96748342450f6aa2\msvcr90d.dll'
The program '[6056] test2.exe: Native' has exited with code 0 (0x0).

你能帮助我吗 ?

4

2 回答 2

2

在 Visual Studio 中按 [Ctrl F5] 无需调试即可运行程序。

然后它在最后停止。

要运行调试,只需按 [F5]。然后您可能会发现在 的最后一个右大括号上设置断点很方便main,因为调试程序不会自动停止。也就是说,它是独立运行的,而不是通过批处理文件。

于 2013-01-01T06:38:30.907 回答
0

system("PAUSE");不是system("PAUS");除此之外,我看不出为什么你的程序不应该在正确设置的开发环境上编译。

于 2013-01-01T06:24:38.653 回答