#include using namespace std;int main(){ int num=5; int *p=# int &ref=num; *p=*p+5; //算术 ref=ref<<2; //移位实现乘法 cout<}