跳到主要内容

2.1整型

2.2sizeof关键字

可以统计数据类型所占内存大小,输出的是字节

short num1 = 10;
cout <<"short占用的内存空间为:"<<sizeof(num1)<<endl;
cout <<"short占用的内存空间为:"<<sizeof(short)<<endl;

2.3实型(浮点型)

单精度float

双精度double

float f1 = 3.14f;
float f2 = 3e2;//3*10^2

2.4字符型

char ch = 'a';//char只占1个字节
//ASCLL编码
cout <<(int)ch<<endl;//a-97 A-65

2.5转义字符

常用:\n \ \t

cout <<"hello world\\n";
cout <<"hello world"<<endl;
cout <<"aaa\\thello world";//与aaa拼接8个位置,整齐的输出数据

2.6字符串型

char str[] = "hello world";
cout<<str<<endl;

string str2 = "hello world";//要包含头文件#include<string>

2.7布尔类型—一个字节

bool两个值

true(本质是1)非零的值都代表真

flase(本质是0)

bool flag = true;
cout <<flag<<endl;

2.8数据的输入

关键字:cin

int a = 0;
cin >> a;

参考与致谢