#include <iostream> using namespace std; #define day 7 /* 定义宏常量方法 #define 宏常量名 常量值 //通常在文件上方定义,表示一个常量; const修饰的变量 const 数据类型 变量名 = 常量值;//通常在变量定义前使用const修饰该变量为常量 不可修改 */ int main()