在visual studio 2010中c++输入到cin.get(就自动关闭了,以前没事的 加入 system("pause"); 就没事!
比方说这么写代码#include<iostream>intmain(){usingnamespacestd;cout<<"comeupandc++mesometime."...
比方说这么写代码
#include<iostream>
int main()
{
using namespace std;
cout<<"come up and c++ me some time.";
cout<<endl;
system("pause");
return 0;
}
这样写没问题但是
#include<iostream>
int main()
{
using namespace std;
cout<<"come up and c++ me some time.";
cout<<endl;
cin.get(
输入到这里没等到输入return 0; 呢 visual studio 2010这个工具就自动关闭了
以前我也是用的visual studio 2010 展开
#include<iostream>
int main()
{
using namespace std;
cout<<"come up and c++ me some time.";
cout<<endl;
system("pause");
return 0;
}
这样写没问题但是
#include<iostream>
int main()
{
using namespace std;
cout<<"come up and c++ me some time.";
cout<<endl;
cin.get(
输入到这里没等到输入return 0; 呢 visual studio 2010这个工具就自动关闭了
以前我也是用的visual studio 2010 展开
3个回答
展开全部
你以前是用VC6的吧。
在VS的控制台应用程序中,main函数运行到return就会自动关闭了。而system(“pause”)调用了cmd的pause命令,用于暂停中断cmd窗口的一次状态,由于控制台程序都是靠cmd运行的,所以可以达到暂停的效果。
这里面cin.get会造成停止可能是由于吸收了上一次命令的回车符导致的,你试试写两条cin.get应该就没事了。
//-------------------
那就不知道了,把写了pause的运行结果截图看一下
在VS的控制台应用程序中,main函数运行到return就会自动关闭了。而system(“pause”)调用了cmd的pause命令,用于暂停中断cmd窗口的一次状态,由于控制台程序都是靠cmd运行的,所以可以达到暂停的效果。
这里面cin.get会造成停止可能是由于吸收了上一次命令的回车符导致的,你试试写两条cin.get应该就没事了。
//-------------------
那就不知道了,把写了pause的运行结果截图看一下
展开全部
执行到“system("pause");”,你需要回车一下才会跳过此语句。相当于pause了一下程序。
cin.get自动关闭,得看cin.get上下文的具体代码。
cin.get自动关闭,得看cin.get上下文的具体代码。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你试一下用Ctrl+F5来“开始运行,不调试”
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询