csapp2e 家庭作业 2.70时间:2022-02-06 21:54:04 int fits_bits(int x,int n) { int w=sizeof(int)<<3; return x == (x<<(w-n))>>(w-n); }