基于进制转换的
【相关文章:Project2002术语词典】<? 【扩展阅读:利用RSS进行项目沟通】
【扩展信息:SharePoint在项目管理中的应用】//made by huyang @2005-01-20||11-04-06##用n进位制到m进位制 ##0~9a-z,最多可理解为36进制范围 print<title>加密解密法</title>; class carry { function carry($n,$m) { $this->n=$n; $this->m=$m; $this->chn[0]=0; $this->chn[1]=1; $this->chn[2]=2; $this->chn[3]=3; $this->chn[4]=4; $this->chn[5]=5; $this->chn[6]=6; $this->chn[7]=7; $this->chn[8]=8; $this->chn[9]=9; $this->chn[a]=10; $this->chn[b]=11; $this->chn[c]=12; $this->chn[d]=13; $this->chn[e]=14; $this->chn[f]=15; $this->chn[g]=16; $this->chn[h]=17; $this->chn[i]=18; $this->chn[j]=19; $this->chn[k]=20; $this->chn[l]=21; $this->chn[m]=22; $this->chn[n]=23; $this->chn[o]=24; $this->chn[p]=25; $this->chn[q]=26; $this->chn[r]=27; $this->chn[s]=28; $this->chn[t]=29; $this->chn[u]=30; $this->chn[v]=31; $this->chn[w]=32; $this->chn[x]=33; $this->chn[y]=34; ... 下一页