1:移位运算符
#include<stdio.h> int main() { printf("%d ",18>>1); // 移位运算符 也就是 乘以2^? 后面的 是 进位 的 位数. printf("%d ",18<<1); // 除以2^? 后面的 是 退位 的 位数 }