cfree注册码
❶ C-Free 怎样获得注册码
我哦都不知道我的机器码,唉,c-free运行不起,也木法,,楼主怎么整的
❷ C语言编译器,C free 5的注册码有吗
我亲自用过可以用
用户名:tianfang电子邮件:[email protected]注册码:2NnUqd3shO2agta0xNjcusfK1LXO
❸ cfree3.5注册码
#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编译器编译一下,用它生成注册码,能用的,我的就是这样注册的,注册码也跟机器码差不多长,绝不是楼上的147f
❹ cfree5的注册码输入错误后怎么办以后在装的就都不能用了啊
我给你一个呀!这个是我在网上翻到的:
用户名:tianfang
电子邮件:[email protected]
注册码:2NnUqd3shO2agta0xNjcusfK1LXO
肯定是你手痒,把专C盘里C-Free5的一些目录删了属(也可能是一些清理软件所为),否则它是不要求你注册的。
❺ cfree5、0注册码
用户名:123123
电子邮件:[email protected]
注册码:mJ2Em9jdm7jGwYTpmp2H6KmehtvO
显示让重启电脑,不用理睬,只要重启C-free就行了!
❻ cfree注册问题
注册码很简单啊……第一,要获取你的机器码,我的cfree
有自带的注册机,
如果需内要的话给我发消容息,我给你……
机器码是你
打开他
提示框上面的一串红色的数字。然后运行注册机,输入机器码
会产生
一串字符
,那串字符就是注册码。
❼ 我有cfree5的注册码,请问要从哪里输入 请截图指教,谢谢
可试试打开“c-free主页”或“c-free帮助”,看里有没有注册的地方!~
❽ c-free注册码
我的主页空间有c-free算注册码的源程序,你先用c-free运行一下源代码,就能内算出注册码容。
http://hi..com/zw791/blog/item/eddd27d5735e3ec651da4b39.html
❾ 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;
}