摘要:
### 变量名称不能是关键字 ### 变量名称只能由字母、数字、下划线组成 ### 变量名称第一个字符必须为字母或下划线 ### 变量名称区分大小写 阅读全文
摘要:
#include <iostream> // C++ 有两种定义常量的方式 #define 修饰 const 修饰 //宏常量定义在函数外 #define constant 7; int main(int argc, const char * argv[]) { //局部常量,定义在函数内用cons 阅读全文
摘要:
//变量的定义方式 数据类型 变量名 = 初始值; int value = 100; View Code 阅读全文
摘要:
//单行注释 /*多 行 注 释 */ 阅读全文