c free 5 激活方式
C-FREE5的注册码:用户名:tianfang:quart@163  注册码:2NnUqd3shO2agta0xNjcusfK1LXO
用户名:123123 :111@qq 注册码:mJ2Em9jdm7jGwYTpmp2H6KmehtvO
用户名:tianfang
quart@163
注册码:2NnUqd3shO2agta0xNjcusfK1LXO
之前版本的软件可以使用源代码自动生成,下面就贴出代码,只需要把下面代码在C-Free中编译出来就能生成注册码了:
#include "stdlib.h" 
#include "stdio.h"
int main(intargc, char* argv[]) 
{ 
        char chKey[128] = {0}; 
        int i = 0; 
        unsigned intunXORCode, 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; qq用户名
                } 
                else 
                { 
                        chKey[i] = unTmp + 0x30; 
                } 
                i++; 
        } 
        printf("Key is: \n"); 
        while (i >= 0) 
        { 
                printf("%c", chKey[i]); 
                i--; 
        } 
        printf("\n"); 
        getch(); 
        return 0; 
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。