在C++中,有两种方式定义常量
1.#define 宏常量(通常定义在文件上方)
#define 常量名 常量值
2.const修饰的变量
const 数据类型 变量名 = 变量值
示例
#include <iostream>
using namespace std;
//1.define 变量名 变量值(变量名和变量值之间没有=)
#define Day 7
int main()
{
//2.const修饰变量表示常量
// const 数据类型 变量名=变量值(变量名和变量值之间有=)
const int month = 12;
cout << "Day value: "<< Day << endl;
system("pause");
return 0;
}
网友评论