为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我生成不了?(Visual Studio 2017)

#include<iostream>
#include<stdlib.h>
using namespace std;

int main(void)
{
	int a = 10;
	int &b = a;

	b = 20;
	cout << a << endl;

	a = 30;
	cout << b << endl;

	system("pause");
	return 0;
	cin.get;
}


正在回答

1 回答

18行的cin.get;改为cin.get();

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之离港篇
  • 参与学习       122700    人
  • 解答问题       474    个

C++扫清通往面向对象的最后一道障碍,将所有知识点融会贯通

进入课程

为什么我生成不了?(Visual Studio 2017)

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信