帖子列表
-
C语言课程设计_扫地雷游戏
设计]扫地雷游戏 代码 #include #include #include #define LEFTPRESS 0xff01 #define LEFTCLICK 0xff10 #define LEFTDRAG 0xff19 #define MOUSEMOVE 0xff0
-
C语言课程设计_速算24
设计]速算24 代码 #define N 20 #define COL 100 #define ROW 40 #include "stdio.h" #include "time.h" /*系统时间函数*/ #include "graphics.h" /*图形函数*/
-
C语言课程设计_通讯录
设计]通讯录 代码 #include "stdio.h" /*I/O函数*/ #include "stdlib.h" /*标准库函数*/ #include "string.h"/*字符串函数*/ #include "ctype.h" /*字符操作函数
-
C语言课程设计_图书借阅管理
设计]图书借阅管理 代码 /* book.c源程序*/ #include #include #include #include #include #include #define LEFT 0x4b00 /*左*/ #define RIGHT 0x4
-
C语言课程设计_工资管理
设计]工资管理 代码 /******头文件(.h)***********/ #include "stdio.h" /*I/O函数*/ # include "bios.h" /*ROM基本输入输出函数*/ #include "dos.h" /*
-
C语言课程设计_进程调度
进程调度 代码 #include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct node { char name; /*进程标识符*/ int prio; /*进程优
-
C语言课程设计_存储管理分区分配算法
存储管理分区分配算法 代码 /***pcb.c***/ #include "stdio.h" #include "stdlib.h" #include "string.h" #define MAX 32767 typedef struct node /*设置分区
-
c语言课程设计_学生成绩管理系统
学友集 发表于: 2006-12-23,
学生成绩管理系统 代码 #include "stdio.h" /*I/O函数*/ #include "stdlib.h" /*其它说明*/ #include "string.h" /*字符串函数*/ #include "conio.h" /*
-
数据结构课程数据_飞机订票系统
学友集 发表于: 2006-12-23,
图的遍历的演示(c 语言 数据结构课程设计题) #define M 20 #include #include #include /*定义图*/ typedef struct{ int V; int R; int vexnum; }
-
c语言课程设计_通讯录
学友集 发表于: 2006-12-23,
调试环境为TC2.0。运行这个程序需要tc提供的几个头文件。建议修改options菜单中的include目录项到tc的include的目录下(具体方法可以参见本书第一章的讲解);或者把源程序
-
c语言课程设计_鼠标器
/*为了让本实例尽可能简洁的突出鼠标编程,而不在其他方面过多分散读者的注意力。我忽略了很多实现的细节,读者对于可以在十进制编辑框中输入字符"F"之类的问题不要太吃
-
c语言课程设计_菜单设计
调试环境为TC2.0或者3.0。运行这个程序需要tc提供的几个头文件。建议修改options菜单中的include目录项到tc的include的目录下(具体方法可以参见本书第一章的讲解);或者
-
C语言课程设计_贪吃蛇代码
#define N 200 #include #include #include #define LEFT 0x4b00 #define RIGHT 0x4d00 #define DOWN 0x5000 #define UP 0x4800 #define ESC 0x011b int i,
-
c语言课程设计_计算器设计
#include /*DOS接口函数*/ #include /*数学函数的定义*/ #include /*屏幕操作函数*/ #include /*I/O函数*/ #include /*库函数*/ #include /*变量长度
-
c语言课程设计_黑白棋对战
/*3.3.4 源程序*/ #include "graphics.h" /*图形系统头文件*/ #define LEFT 0x4b00 /*光标左键值*/ #define RIGHT 0x4d00 /*光标右键值*/ #define DOWN 0x5000 /*
-
c语言课程设计_五子棋双人对战程序
学友集 发表于: 2006-12-23,
/**********************************************************/ /* 本程序在Turbo C或Borland C下编译通过 */ /* 五子棋 双人对战程序 */ /
-
c语言课程设计_扫雷游戏设计
c语言课程设计_扫雷游戏设计 /*5.3.4 源程序*/ #include #include #include #define LEFTPRESS 0xff01 #define LEFTCLICK 0xff10 #define LEFTDRAG 0xff19 #
-
c语言课程设计_文本模式下的菜单演示
学友集 发表于: 2006-12-23,
/****************************************/ /* TurboC2.0 运行通过 */ /* 文本模式下的菜单演示 */ /****************************************/ #include<p
-
c语言课程设计_简单的图像演示
学友集 发表于: 2006-12-23,
/********************************/ /* TurboC 2.0下运行通过 */ /* 简单的图像演示 */ /********************************/ #include<conio.h> #inclu
-
c语言课程设计_猜拳游戏
学友集 发表于: 2006-12-23,
c语言课程设计_猜拳游戏 enum p_r_s{ paper,rock,scissors,game,help,instructions,quit }; #include main() { enum p_r_s player,machine; enum p_r_