Visual C++ 2010 Express 如何查看输出?
我用的是VisualC++2010Express中文版。我在学习C++编程,操作如下:新建项目为win32控制台应用程序cc.cpp文件编辑如下:#include"std...
我用的是Visual C++ 2010 Express 中文版。我在学习C++编程,
操作如下:
新建项目为 win32控制台应用程序
cc.cpp文件编辑如下:
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"abcdefg"<<endl;
}
调试运行 输出一栏如下:
“cc.exe”: 已加载“F:\work\c++\cc\Debug\cc.exe”,已加载符号。
“cc.exe”: 已加载“C:\Windows\System32\ntdll.dll”,Cannot find or open the PDB file
“cc.exe”: 已加载“C:\Windows\System32\kernel32.dll”,Cannot find or open the PDB file
“cc.exe”: 已加载“C:\Windows\System32\KernelBase.dll”,Cannot find or open the PDB file
“cc.exe”: 已加载“C:\Windows\System32\msvcp100d.dll”,已加载符号。
“cc.exe”: 已加载“C:\Windows\System32\msvcr100d.dll”,已加载符号。
程序“[6488] cc.exe: 本机”已退出,返回值为 0 (0x0)。
请教,我想看到的输出是 abcdefg
应该如何设置啊? 还请高人指点。感激不尽 展开
操作如下:
新建项目为 win32控制台应用程序
cc.cpp文件编辑如下:
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"abcdefg"<<endl;
}
调试运行 输出一栏如下:
“cc.exe”: 已加载“F:\work\c++\cc\Debug\cc.exe”,已加载符号。
“cc.exe”: 已加载“C:\Windows\System32\ntdll.dll”,Cannot find or open the PDB file
“cc.exe”: 已加载“C:\Windows\System32\kernel32.dll”,Cannot find or open the PDB file
“cc.exe”: 已加载“C:\Windows\System32\KernelBase.dll”,Cannot find or open the PDB file
“cc.exe”: 已加载“C:\Windows\System32\msvcp100d.dll”,已加载符号。
“cc.exe”: 已加载“C:\Windows\System32\msvcr100d.dll”,已加载符号。
程序“[6488] cc.exe: 本机”已退出,返回值为 0 (0x0)。
请教,我想看到的输出是 abcdefg
应该如何设置啊? 还请高人指点。感激不尽 展开
3个回答
2010-10-16
展开全部
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"abcdefg"<<endl;
system("pause");
return 0;
}
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"abcdefg"<<endl;
system("pause");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"abcdefg"<<endl;
char a=getchar();
}
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"abcdefg"<<endl;
char a=getchar();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询