1.数据类型的种类
char 字符数据类型 ——%c
char ch=a; printf("%c\n",ch);
short 短整型——%d
short a=10; printf("%d\n",a);
int 整形——%d
int a=10; printf("%d\n",a);
long 长整型——%ld
long a=10; printf("%ld\n",a);
long long 更长的整形——%lld
long long a=10; printf("%lld\n",a);
float 单精度浮点型——%f
float a =10; printf("%f\n",a);
double 双精度浮点型——%lf
double a =10; printf("%lf\n",a)
2.计算机中的单位
bit-——比特位 1或0
byte——字节 1byte=8bit 11101111
kb=1024byte
mb=1024kb
gb=1024mb
tb=1024gb
pb=1024tb
3.变量和常量
变量:不能改变的量
常量:可以改变的量
第一种定义变量的方法
int age=10; float weight=10; char ch='w';
第二种定义变量的方法
int age; float weight;
4.局部变量和全局变量
局部变量:在大括号内定义的变量称为局部变量——只可以在定义所在的大括号中使用
全局变量:在大括号外定义的变量称为全局变量——是可以在所有的函数中使用
注意:当全局变量与局部变量名字冲突的时候,局部变量优先
5.函数
输入函数:scanf("%d\n",&a);
输出函数:printf("%d\n",a);