cfree注册
A. c-free注册码
我的主页空间有c-free算注册码的源程序,你先用c-free运行一下源代码,就能内算出注册码容。
http://hi..com/zw791/blog/item/eddd27d5735e3ec651da4b39.html
B. cfree5如何创建c文件
Cfree默认的文件格式是*CPP,要想转换成*c文件只要在保存的时候有一个文件类型改掉就行了。
C. cfree注册问题
注册码很简单啊……第一,要获取你的机器码,我的cfree
有自带的注册机,
如果需内要的话给我发消容息,我给你……
机器码是你
打开他
提示框上面的一串红色的数字。然后运行注册机,输入机器码
会产生
一串字符
,那串字符就是注册码。
D. c-free 注册码
朋友,上网下载个注册机就可以了,4.1版的!或者直接下载5.0版破解版!
E. 为什么我输了验证码并重启c-free后仍旧出现"你必须关闭并重新启动c-free以验证注册正确性"。
为什么我的也是,楼主你的问题解决了没有啊,咋办
F. C-Free 怎样获得注册码
我哦都不知道我的机器码,唉,c-free运行不起,也木法,,楼主怎么整的
G. C-free5.0,不知道啥原因成这样了,重装无效
C-Free采用浮动窗口,你把子窗口调乱啦。删除用户下的系统配置目录C-Free,然后删除注册表下的各个C-free项目,然后重装即可还原。
H. 谁有c-free5.0的注册码 江湖救急
C-FREE5的注册码: 用户名:tianfang 电子邮件:[email protected] 注册码:2NnUqd3shO2agta0xNjcusfK1LXO
I. C-FREE 3.5如何获得注册码,用户名
把以下代码复制到你的C-FREE 中运行
然后输入 你的机器码,就会得到注册码了.
本来想帮你算出来的.不过电脑最近重装了.还没来的及装C-FREE
#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;
}