C++定义常量两种方式

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

      • 通常在文件上方定义,表示一个常量
        1. #include<iostream>
        2. //宏常量
        3. #define day 7
        4. using namespace std;
        5. int main() {
        6. cout << "一周有" << day << "天"<< endl;//一周有7天
        7. system( "pause");
        8. return 0;
        9. }
    2. const修饰的变量 const 数据类型 常量名 = 常量值

      • 通常在变量定义前加关键字const,修饰该变量为常量,不可修改
        #include<iostream>
        using namespace std;
        int main() {
        //const修饰的变量,为常量
        const int day = 7;
        cout << "一周有" << day << "天"<< endl;
        system( "pause");
        return 0;
        }