引用正确的使用方式之一

    1. int m=10;
    2. // float &t=&m;
    3. int &x=m;
    4. x++;
    5. cout<<x<<endl<<m<<endl;