编译C++时乘号*识别成了指针的运算符

编译时出现的问题如下图:
编译C++时乘号*识别成了指针的运算符_第1张图片
出错代码如下:

#include 
#include 
using namespace std;

//变量声明
extern int a,b;
extern int c;
extern float f;

#define LENGTH 10;
#define WIDTH 5;
#define NEWLINE '\n'

class Myclass{
public:
	static int class_var;//类作用域变量
};

int Myclass::class_var=30;

int main()
{	
	int area;
	area= LENGTH * WIDTH;
	cout << area;
	cout << NEWLINE;

	//string greeting = "Hello,runoob";
	//cout << greeting;
	//cout << "\n";

	//string greeting2="hello";
	//cout <
	//cout << "类变量:" << Myclass::class_var <
	变量定义
	//int a,b;
	//int c;
	//float f;

	实际初始化
	//a=10;
	//b=20;
	//c=a+b;

	//cout << c <

	//f=70.0/3.0;
	//cout << f <

	return 0;
}

出错原因:#define语句后面加了 ; ,去掉分号就没问题了。

你可能感兴趣的:(C++学习记录,c++,开发语言)