使用#define预处理器定义常量
#include <iostream>
using namespace std;
/*
使用#define预处理器定义常量
这是一个预处理过程中替换内容
*/
#define WIDTH 2
#define HEIGHT 3
#define NEWLINE '\n'
// 注意有括号和没括号的区别,只是一个内容的替换而矣。
#define WIDTH2 2+3
#define WIDTH3 (2+3)
int main() {
int c;
c = WIDTH * HEIGHT; //相当于2*3,结果为6
cout<<c<<NEWLINE;
cout<<WIDTH2 * HEIGHT<<endl; //注意:相当于 2+3*3,结果为11,只是一个替换过程。
cout<<WIDTH3 * HEIGHT<<endl; //相当于 (2+3)*3,结果为15。
// WIDTH = 10; //错误,常量不能修改
return 0;
}
/*
输出:
6
11
15
*/