C++基础语法篇
一、语法
1.定义变量并赋值 :
数据类型 变量名 = 值;
2.宏常量定义 #define会报错,提示转换:
constexpr auto 数据类型 常量名 = 常量值;
3.定义普通(局部)常量:
const 数据类型 常量名 = 常量值;
4.sizeof 关键字,查询占用空间
sizeof(数据类型||变量名);
5.字符对应ASCII码,并能直接赋值
int ascII = (int)变量名;
char a = 97;
二、代码示例
# include <iostream> using namespace std; // 2.宏常量定义 #define WeekDay = 7 会报错,提示转换constexpr constexpr auto WeekDay = 7; int main() { //标准输出 hello world cout << "Hello World" << endl; //1.定义变量并赋值 int a = 10; //打印变量 cout << "a =" << a << endl; // 打印宏常量 cout << "一周有: " << WeekDay << " 天" << endl; //3.定义常量,const修饰的变量 const int MonthDay = 31; cout << "一月有: " << MonthDay << " 天" << endl; //4.sizeof(数据类型||变量) 查看数据类型所占的空间大小 cout << "数据类型int所占的内存" << sizeof(int) << endl; //5.字符变量对应的ASCII码 char ch = 'a'; cout << "a 对应的ASCII 码为" << (int)ch << endl; //可以至今使用ASCII为变量赋值 ch = 97; cout << "a 使用ASCII 码赋值后为:" << ch << endl; /* 暂停 多行注释的使用*/ system("pause"); return 0; }