DEV C++程序编译过了,调试时输入数据后,按回车键怎么黑框就不见了? 5
程序如下:#include<iostream>intmain(){usingnamespacestd;intbooks;//declaresvariable"books"...
程序如下:#include <iostream>
int main()
{
using namespace std;
int books; // declares variable "books"
cout << "how many books do you have?" << endl; // displays the first line
cin >> books; // input a number
cout << "here are 100 more." << endl; // displays the second line
books=books+100; // adds 100 to the variable "books"
cout << "now you have " << books << " books." << endl;
//displays the third line with the changed variable "books"
cin.get();
return 0;
} 展开
int main()
{
using namespace std;
int books; // declares variable "books"
cout << "how many books do you have?" << endl; // displays the first line
cin >> books; // input a number
cout << "here are 100 more." << endl; // displays the second line
books=books+100; // adds 100 to the variable "books"
cout << "now you have " << books << " books." << endl;
//displays the third line with the changed variable "books"
cin.get();
return 0;
} 展开
2个回答
展开全部
这个问题很怪, 我也遇到过。
猜测是你前面cin以后不是有个回车的动作么, 下面的get()将这个回车作为输入截获了。
如果你cin.get()后面再接一个cin.get()就会卡在这里了。
或者不用cin.get()干脆用一个system("pause")。
猜测是你前面cin以后不是有个回车的动作么, 下面的get()将这个回车作为输入截获了。
如果你cin.get()后面再接一个cin.get()就会卡在这里了。
或者不用cin.get()干脆用一个system("pause")。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询