1.基本代码(了解库文件引入#include<iostream> using namespace std)
#include<iostream> using namespace std; int main() { cout << "Hello world" << endl; system("pause"); return 0; }
2.注释
1.2 注释
作用:在代码中加一些说明和解释,方便自己或其他程序员程序员阅读代码
两种格式
- 单行注释: // 描述信息
通常放在一行代码的上方,或者一条语句的末尾,对该行代码说明 - 多行注释: / 描述信息 /
通常放在一段代码的上方,对该段代码做整体说明
3.C++定义常量两种方式
- #define 宏常量: #define 常量名 常量值
通常在文件上方定义,表示一个常量 - const修饰的变量 const 数据类型 常量名 = 常量值
通常在变量定义前加关键字const,修饰该变量为常量,不可修改
//1、宏常量 #define day 7 int main() { cout << "一周里总共有 " << day << " 天" << endl; //day = 8; //报错,宏常量不可以修改 //2、const修饰变量 const int month = 12; cout << "一年里总共有 " << month << " 个月份" << endl; //month = 24; //报错,常量是不可以修改的 system("pause"); return 0; }