#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
unsigned int n = 10;
unsigned int tmp= n
- ((n >> 1) & 033333333333)
- ((n >> 2) & 011111111111);
tmp = ((tmp + (tmp >> 3)) & 030707070707)%63;
printf("%d\n",tmp);
return 0;
}
MITHAKMEM算法
最新推荐文章于 2024-07-31 08:42:32 发布