这是今天学到的代码

#include <iostream>
using namespace std;

/*宏常量*/
//#define 常量名 值
#define day 18
//常量是定义完不能修改的
int main()
{   // 屏幕里输出  hello world
    /*多行注释能换行*/
    //不能换行
    cout << "Hello world!" << endl;
    
    /*数据类型 变量名 = 值;*/
    int age = 18;
    cout << "My age is" << age << "years" << endl;

    const int xx = 80;
    //const 也是常量以后不能更改

    cout << "May the love of" << day << "be the love" << xx << endl;

    /*c++保留字
    https://www.runoob.com/w3cnote/cpp-keyword-intro.html*/
    //保留字是不能当做变量使用的

    /*变量命名规则:
    *1.不能以数字开头
    *2.不能是保留字
    3.数字,字母,下滑线
    4.区分大小写*/

    /*变量命名推荐格式:
    1.XxxXxx
    2.xx_xx*/

    //建议:起变量一定要见名知意

    return 0;
}
有什么不对的请大佬指正谢谢了
————————————————