我在 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).
你能帮助我吗 ?