1.常量:
1.1.#define的宏定义
#define 常量名 常量值
1.2.const 修饰的变量
const 数据类型 常量名 常量值
#include<iostream>
using namespace std;
//常量:
//1.#define的宏定义
// #define 常量名 常量值
//2.const 修饰的变量
//const 数据类型 常量名 常量值
#define Day 7
int main
1.常量:
1.1.#define的宏定义
#define 常量名 常量值
1.2.const 修饰的变量
const 数据类型 常量名 常量值
#include<iostream>
using namespace std;
//常量:
//1.#define的宏定义
// #define 常量名 常量值
//2.const 修饰的变量
//const 数据类型 常量名 常量值
#define Day 7
int main