-
近期文章
近期评论
- 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 年十一月
分类目录
功能
月归档:2009 年三月
2009
03-23
03-23
#include<iostream.h>#include<malloc.h>#define NULL 0#define LEN sizeof(struct ST)#define S struct STstruct ST{ long num; float score; S *next;};
int n=0;
S *creat(void){&n....
Read More >
2009
03-23
03-23
#include "stdlib.h"#include "stdio.h"#define Max 10struct List{ int Number; char Name[Max]; struct List *Next;};typedef struct List Node;typedef Node* Link;
Link Creat_List(Lin....
Read More >
2009
03-22
03-22
下面这个程序中最后一个printf("\n")为啥没有用啊?有没有它,程序的运行结果都是一样
#include<stdio.h>
int main(void){ int i; int j; int k;
for(i=1;i<=5;i++) for(j=1;j<=3;j++){ &nb....
Read More >
2009
03-22
03-22
#include<stdio.h>main(){int a,b,x,y,z,n,m,p;printf("Please input int a and b:");scanf("%d%d\n",&a,&b);x=(a>b)?(a):(b);y=(a>b)?b:a;for (z=x;z==0;){z=x-y;x=(y>z)?(y):(z);y=(y>z....
Read More >
#include<iostream>#include<string.h>using namespace std;class Dog{private: int age; float weight; char name[20];public: void SetDog(int Nage=0,float Nweight,char Nname[....
Read More >
各位大哥们,小弟学习C语言有段时间了 ,想弄个识别软件来锻炼下自己,但是一时间又没有头绪 ,大哥们能不能给些指导。我想请问一下 ,要编写一个识别软件,编写的过程是什么样的。....
Read More >
2009
03-18
03-18
运行环境:XP+Turbo 2.0
六数码问题
时限:1000ms 内存限制:10000K 总时限:3000ms
描述:
现有一两行三列的表格如下:A B CD E F把1、2、3、4、5、6六个数字分别填入A、B、C、D、E、F格子中,每个格子一个数字且各不相同。每种不同的填法称为一种布局。如下:1 3 52 4 6布局12 5 64 3 1布局2定....
Read More >
[QUOTE=Freeze]#include "stdio.h"void main(){ int a,b,c,d=0,temp; printf("input two num:"); scanf("%d%d",&a,&b); if(a>b) {temp....
Read More >
2009
03-17
03-17
2009
03-17
03-17