1.宏常量
定义方式:
#define 宏常量名 实际数据
#define day 7
井号必须有,不能写等号,末尾无分号
可以重定义
代码
#include<iostream>
using namespace std;
#define day 7
#define day 14
int main()
{
cout << "day=" << day << endl;
#define day 7
cout << "day=" << day << endl;
const int month = 12;
//const int month = 24;
return 0;
}
运行结果
2.const 常量
定义方式:
const 数据类型 常量名=实际数据;
示例: const int a =3;
不可以重定义