作用:用于记录程序中不可更改的数
C++定义常量两种方式

  1. define 宏常量:#define 常量名 常量值

。通常在文件上方定义,表示一个常量

  1. const修饰的变量:const 数据类型 常量名 = 常量值

。通常在变是定义前加关键字const,修饰该变量为常量,不可修改
image.png
#define常量:
#define Day 7
int main()
{
cout << “一周有” << Day << “天” << endl;
system(“pause”);
return 0;
}
注:在main方法前面,而且不能有分号

const常量:
int main()
{
const int month = 12;
cout << “一年有” << month << “个月” << endl;
system(“pause”);
return 0;
}
注:在main方法内部,需要分号