c free3 5 c-free3.5


c free3 5 c-free3.5

文章插图
大家好,小龙来为大家解答以上的问题 。c-free3.5,c free3 5这个很多人还不知道,现在让我们一起来看看吧!
1、#include "stdafx.h"#include "stdlib.h"#include "stdio.h"int main(int argc, char* argv[]){char chKey[128] = {0};unsigned int unXORCode, unRemainder, unQuotient, unTmp, unMachineCode;printf("Please Key in the Machine Code: ");scanf("%d", &unMachineCode);unXORCode= unMachineCode ^ 0x90909090;unRemainder = unXORCode % 0x25;unQuotient = unXORCode;if (unRemainder < 0x11){unRemainder += 0x11;}int i;i = 0;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: ");while (i >= 0){printf("%c", chKey[i]);i--;}printf(" ");return 0;}/这是C语言的注册码代码 , 用VC编的,你找个VC编译器编译一下 。
2、用它生成注册码,能用的,我的就是这样注册的 。
3、注册码也跟机器码差不多长,绝不是楼上的147f 。
【c free3 5 c-free3.5】本文到此分享完毕 , 希望对大家有所帮助 。

    推荐阅读