1.5 常量
#include <iostream>
using namespace std;
/*
常量的定义方式:
1、#define 宏常量
2、const 修饰的变量
*/
#define Day 7
int main()
{
cout << "一周总共有:" << Day << "天" << endl;
const int mount = 12;
cout << "一年有:" << mount << "月份" << endl;
system("pause");
return 0;
}最后更新于