C/C++错误集锦(VS2015):错误 C2065 “a”: 未声明的标识符

原文链接:http://www.juzicode.com/cpp-error-vs2015-c2065-not-declare-identifier/

错误提示:

vs2015编译时提示:错误 C2065 “a”: 未声明的标识符

#include <iostream>
#include "math.h"
using namespace std;

int main(void)
{
	cout << "vx:桔子code" << endl;
	cout << "juzicode.com" << endl;
	cin >> a;
	return 0; 
} 

错误原因:

1、cin >> a这行,其中变量a在使用前未定义。

解决方法:

1、在“ cin >> a ”一行前先定义变量a再使用:

#include <iostream>
#include "math.h"
using namespace std;

int main(void)
{
	cout << "vx:桔子code" << endl;
	cout << "juzicode.com" << endl;
	int a; //增加定义
	cin >> a;
	return 0; 
} 


如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注