编程论坛's Archiver

T_T 发表于 2008-6-24 12:39

请问哪 有c语言编译器下载

我想暑假学习C语言

StarWing83 发表于 2008-6-24 12:41

你是谁的马甲儿?

T_T 发表于 2008-6-24 12:44

我是新来的

sunkaidong 发表于 2008-6-24 12:47

燕子论坛有。。。http://yzfy.org

T_T 发表于 2008-6-24 12:52

谢了

lai832 发表于 2008-6-24 17:04

自已搜DEV-C++

在公司用也不用担心版权问题

chinabc365 发表于 2008-6-24 17:10

给你C语言编译器

把你邮箱给我我给你编译器。

T_T 发表于 2008-6-24 18:16

gu_hong_tao@sina.com

hu396072786 发表于 2008-7-1 19:16

我新学我也要
谢了
396072786@qq.com

cosdos 发表于 2008-7-1 19:37

Turbo C/C++
Borland C/C++
Visual C++
Dev-C++


网上搜就是了。

flyue 发表于 2008-7-1 19:43

本站那个,是不是精简版?

z278755133 发表于 2008-7-1 19:49

哪个编译器流行些

flyue 发表于 2008-7-1 19:59

Visual C++ 6.0 or 2005

曾一仙 发表于 2008-7-1 20:41

我也要

我也想要个a5315224@126.com谢谢啦

qGemini 发表于 2008-7-1 20:56

搜索一下就有了

ak42d 发表于 2008-7-1 21:12

c--free写的

顺便问问 c-free能写C++程序吗??

flyue 发表于 2008-7-1 21:14

没用过

lingluoz 发表于 2008-7-1 22:08

C-FREE 8错。。感觉很好。60圆的价格也接受的了。。就是。不能把TAB变成空格。。本大人很讨厌TAB。所以。等他们这个功能出来再说。。

ak42d 发表于 2008-7-1 22:30

回复 18# lingluoz 的帖子

不要钱的啊  

自己用c--free写一个注册机啊

ak42d 发表于 2008-7-1 22:34

#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

Powered by Discuz! Archiver 6.1.0  © 2001-2007 Comsenz Inc.