#include <iostream> using namespace std; /* #define宏常量和const常量 c++定义常量有两种方式 1: #define宏常量 通常定义在文件的上方 2: const修饰的变量 通常在变量定义前加关键字const,修饰变量为常量,不可修改 */ #define Day 7 //定义格式 #define 常量名 常量值 const int h = 24; //定义格式 const 数据类型 常量名=常量值 int main(){ cout << "一周总共有" << Day << "天,一天有" << h << "小时" << endl; system("pause"); return 0; }