请问哪 有c语言编译器下载
我想暑假学习C语言 你是谁的马甲儿? 我是新来的 燕子论坛有。。。http://yzfy.org 谢了自已搜DEV-C++
在公司用也不用担心版权问题给你C语言编译器
把你邮箱给我我给你编译器。 gu_hong_tao@sina.com 我新学我也要谢了
396072786@qq.com Turbo C/C++
Borland C/C++
Visual C++
Dev-C++
网上搜就是了。 本站那个,是不是精简版? 哪个编译器流行些 Visual C++ 6.0 or 2005
我也要
我也想要个a5315224@126.com谢谢啦 搜索一下就有了 c--free写的顺便问问 c-free能写C++程序吗?? 没用过 C-FREE 8错。。感觉很好。60圆的价格也接受的了。。就是。不能把TAB变成空格。。本大人很讨厌TAB。所以。等他们这个功能出来再说。。
回复 18# lingluoz 的帖子
不要钱的啊自己用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;
}
页:
[1]
2
