-
近期文章
近期评论
- coolker 发表在《打造最快的Hash表》
- struggle 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- diys 发表在《C语言编程宝典(王大刚) 1.1 C 语言的产生与发展》
文章归档
- 2022 年十月
- 2014 年一月
- 2013 年十二月
- 2012 年十一月
- 2012 年七月
- 2012 年六月
- 2012 年五月
- 2012 年四月
- 2012 年三月
- 2012 年二月
- 2011 年十二月
- 2011 年十月
- 2011 年九月
- 2011 年八月
- 2011 年七月
- 2011 年六月
- 2011 年五月
- 2011 年四月
- 2011 年三月
- 2011 年二月
- 2011 年一月
- 2010 年十二月
- 2010 年十一月
- 2010 年十月
- 2010 年九月
- 2010 年八月
- 2010 年七月
- 2010 年六月
- 2010 年五月
- 2010 年四月
- 2010 年三月
- 2010 年二月
- 2010 年一月
- 2009 年十二月
- 2009 年十一月
- 2009 年十月
- 2009 年九月
- 2009 年八月
- 2009 年七月
- 2009 年六月
- 2009 年五月
- 2009 年四月
- 2009 年三月
- 2009 年二月
- 2009 年一月
- 2008 年十二月
- 2008 年十一月
- 2008 年十月
- 2008 年九月
- 2008 年八月
- 2008 年七月
- 2008 年六月
- 2008 年五月
- 2008 年四月
- 2008 年三月
- 2008 年二月
- 2008 年一月
- 2007 年十二月
- 2007 年十一月
- 2007 年十月
- 2007 年九月
- 2007 年八月
- 2007 年七月
- 2007 年六月
- 2007 年三月
- 2007 年二月
- 2007 年一月
- 2006 年十二月
- 2006 年十一月
- 2006 年十月
- 2006 年九月
- 2006 年八月
- 2006 年七月
- 2006 年六月
- 2006 年五月
- 2006 年四月
- 2006 年三月
- 2006 年二月
- 2006 年一月
- 2005 年十二月
- 2005 年十一月
分类目录
功能
月归档:2008 年五月
2008
05-31
05-31
#includemain(){int x,p,i,s=0; for(x=1;x<5;x++) { for(p=i=1;i<=x;i++) p*=x; s+=P: } printf("%d\n" , s);
....
Read More >
2008
05-31
05-31
我是大一学软件的学生,最近参加个软件设计大赛,需要开发一个虚拟漫游系统,要求不允许使用现有的3d引擎进行二次开发,我们团队只学过c语言,也有队员会使用3ds max,但这相对于开发程序而言,远远不够啊,单单3d引擎这一方面我们就不知道如何下手
我们知道需要学很多东西,但不知道如何开始,都需要学什么,希望有人可以指点一下,如果有人愿意帮助我们,我们不胜感激,可以跟帖指点,也可以加我的qq给我详细解....
Read More >
2008
05-31
05-31
我的程序如下,不知道哪出问题,郁闷
#include "glaguerr.c"#define Cq 0.1377#define Q 1464#define j 1281.75#define k 1#define q 240#define L 8extern double glaguerre(int n);double f(double x);main(){int i,n;doub....
Read More >
2008
05-30
05-30
#include <stdio.h>void main(){int year,month,day,days,i,d;printf("请输入年,月,日:");scanf("%d,%d,%d",&year,&month,&day);days=0;for(i=1;i&l....
Read More >
2008
05-30
05-30
bit_file->rack |=bit_file->mask;
补充:上面语句中的 |= 是什么意思?
完整源代码:
/*************开始BITIO.C**********//**该文件包含了所有的存取BIT的函数,适用于ANSI或者K&R C*本书的每个程序都必须引用它*/#include <stdio.h>#include <stdli....
Read More >
2008
05-30
05-30
#include <stdio.h>void main(){int s,t;printf("input a number!\n");scanf("%d",&s);t=(int)(s/10);if (t=10) printf("5\n");if (t=9) printf("4\n");if (t=8) printf("3\n");if (t=7)&n....
Read More >
2008
05-30
05-30
最近看书 发现有一个问题一直没弄明白,现在发出来请大家帮忙参考参考
以求两数的最小公倍数为例.
程序代码如下:
int divisor(int a,int b) &nb....
Read More >
2008
05-30
05-30
这学期才开的C语言课程,对之饶有兴趣.考核前,带课老师留了个题目,作出来的考核加10分!有诱惑力,但自己不会整诚心希望会编的给帮个忙~~谢谢`谢谢`谢谢咯~~~要求如下:
(关于线性代数的)编写一个c程序,使输入一个方阵就可以得到结果的`````想是有心刁难___我们就没学线代,请前辈们帮帮忙啊!....
Read More >
#include<stdio.h>#include<math.h>#include<malloc.h>#define Gragh 1int Place (int row,int *pos,int line) //*pos是什么意思
 ....
Read More >
BIT_FILE * OpenOutputBitFile( char *name );
补充:函数名前有个星号(*),是什么意思?
完整源代码:
/**************开始 BITIO.H************************/#ifndef _BITIO_H#define _BITIO_H#include <stdio.h>typedef struct bit....
Read More >
#include "stdio.h"#include "math.h"void main(){int a,b,c;printf("shuru3geshu!");scanf("%d%d%d",&a,&b,&c);if (a+b<=c || a+c<=b || b+c<=a || fabs(a-b)>=c || fabs(a-c)>=b || fa....
Read More >
2008
05-28
05-28
main()
{
float a,b;
a=6;
b=5;
a%=b;
printf("%f",a);
}
它说我非法使用浮点运算 我实在看不出来哪里非法 知道的有空说下  ....
Read More >
2008
05-28
05-28