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