日志文章列表

2007年04月24日 22:06:26

贪吃蛇(C语言)代码

#define N 200#include <graphics.h>#include <stdlib.h>#include <dos.h>#define LEFT 0x4b00#define RIGHT 0x4d00#define DOWN 0x5000#define UP 0x4800#define ESC 0x011b#inclu..

阅读全文>>

Tags: 开发  

类别: C语言方面 |  评论(0) |  浏览(2044) |  收藏
2006年12月13日 17:13:33

C语言通讯录

/*3. 源程序*/
/***dsdemo.c演示系统***/
#include<stdlib.h>
#include<graphics.h>
#define ESC 0x011b
#define ENTER 0x1c0d
#define DOWN 0x5000
#define UP 0x4800
#include "stdio.h" ..

阅读全文>>

类别: C语言方面 |  评论(1) |  浏览(2961) |  收藏
2006年12月02日 22:51:46

通讯录(C课程设计原码)

#include "stdio.h"   /*I/O函数*/
#include "stdlib.h" /*标准库函数*/
#include "string.h"/*字符串函数*/
#include "ctype.h" /*字符操作函数*/
#define M 50 /..

阅读全文>>

类别: C语言方面 |  评论(0) |  浏览(1238) |  收藏