#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<iostream>
using namespace std;
#define DAY 7
int main()
{
//DAY = 14; // 错误,等号左值是常量,不可以被修改
cout << "一周有" << DAY << "天" << endl;
// const 修饰的变量也具有常量属性
int const a = 10;
const int b = 10;
//a = 20; //错误
system("pause");
return 0;
}
常量-常量与变量的区别-常量的使用
最新推荐文章于 2024-11-05 23:18:09 发布