C-Free 5.0最新注册码

 

用户名:tianfang

电子邮件:[email protected]

注册码:2NnUqd3shO2agta0xNjcusfK1LXO

继续享用这个软件吧!

====================================================================

还有一种方法哦,

之前版本的软件可以使用源代码自动生成,下面就贴出代码,只需要把下面代码在C-Free中编译出来就能生成注册码了:

#include "stdlib.h"
#include "stdio.h"

int main(int argc, char* argv[])
{
         char chKey[128] = {0};
         int i = 0;
         unsigned int unXORCode, unRemainder, unQuotient, unTmp, unMachineCode;
         printf("Please Key in the Machine Code:\n");
         scanf("%d", &unMachineCode);

         unXORCode    = unMachineCode ^ 0x90909090;
         unRemainder = unXORCode % 0x25;
         unQuotient   = unXORCode;
         if (unRemainder < 0x11)
         {
                 unRemainder += 0x11;
         }
         while (unQuotient != 0)
         {
                 unTmp           = unQuotient % unRemainder;
                 unQuotient /= unRemainder;
                 if (unTmp >= 0xa)
                 {
                         unTmp = unTmp + 0x61 + 0xf6;
                         unTmp &= 0x0ff;
                         chKey[i] = unTmp;
                 }
                 else
                 {
                         chKey[i] = unTmp + 0x30;
                 }
                 i++;
         }
         printf("Key is: \n");
         while (i &gt;= 0)
         {
                 printf("%c", chKey[i]);
                 i--;
         }
         printf("\n");
         getch();
         return 0;
}

为了您的安全,请只打开来源可靠的网址

打开网站    取消

来自: http://hi.baidu.com/hahahu/blog/item/99cc58edf6e266c4b21cb17f.html

你可能感兴趣的:(c)