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;
}