#include<iostream> using namespace std; int main() { cout << "HelloWorld" << endl; system("pause"); }
单行注释 //
多行注释 /* 内容 */
数据类型 变量名称 = 初始值 ;
// 单行注释 /* 1. 多行注释 2.... */ int a = 10;
用于记录程序中不可更改的数据,常量一旦定义不可修改
#define 宏常量
const 修饰的变量
#include<iostream> using namespace std; #define DAY 7 int main() { cout << "一周有" << DAY << "天" <<endl; const int month = 12; cout << "一年有" << month << "月" << endl; system("pause"); }
原文:https://www.cnblogs.com/baizhuang/p/13968803.html