动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
电脑书籍下载:程序设计书籍 | 数据库教程书籍 | 平面与多媒体书籍 | 网络通讯书籍 | 系统管理书籍 | 网络安全书籍 | 认证考试书籍
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > C/C++教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
网络编程:ASP教程,ASP.NET教程,PHP教程,JSP教程,C#教程,数据库,XML教程,Ajax,Java,Perl,Shell,VB教程,Delphi,C/C++教程,软件工程,J2EE/J2ME,移动开发
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ C/C++教程 ]的信息



本月文章推荐
.C++ 局部类和嵌套类.
.C++对象布局及多态实现探索之虚函.
.穷举密码算法.
.数据结构学习(C++)之稀疏矩阵.
.命令行参数的分析.
.请高手讲讲C语言函数strtok()和m.
.C++多继承.
.ListBox自画的另一种效果.
.a simple menu programme.
..
.API之消息函数.
.在CB中用socket api来写网络通讯.
.c++类的多态与虚函数的使用.
.使用帮助对象 二.
.C++中用赋值形式op=取代单独形式.
.HANOI塔问题的递归解.
.数据结构学习(C++)之栈和队列.
.C语言五子棋算法.
.C++基础:常量成员函数特殊说明.
.C++应用程序中创建持久对象.

蛇吃蛋

发表日期:2008-3-8 |


#include "graphics.h" #include "stdio.h" #define MAX 200 #define MAXX 30 #define MAXY 30 #define UP 18432 #define DOWN 20480 #define LEFT 19200 #define RIGHT 19712 #define ESC 283 #define ENTER 7181 #define PAGEUP 18688 #define PAGEDOWN 20736 #define KEY_U 5749 #define KEY_K 9579 #define CTRL_P 6512 #define TRUE 1 #define FALSE 0 #define GAMEINIT 1 #define GAMESTART 2 #define GAMEHAPPY 3 #define GAMEOVER 4 strUCt SPlace { int x; int y; int st; } place[MAX]; int speed; int count; int score; int control; int head; int tear; int x,y; int babyx,babyy; int class; int eat; int game; int gamedelay[]=; int gamedelay2[]=; static int hitme=TRUE,hit = TRUE; void init(void); void nextstatus(void); void draw(void); void init(void) { int i; for(i=0;i<MAX;i++) { place[i].x = 0; place[i].y = 0; place[i].st = FALSE; } place[0].st = TRUE; place[1].st = TRUE; place[1].x = 1; speed = 9; count = 0; score = 0; control = 4; head = 1; tear = 0; x = 1; y = 0; babyx = rand()%MAXX; babyy = rand()%MAXY; eat = FALSE; game = GAMESTART; } void nextstatus(void) { int i; int exit; int xx,yy; xx = x; yy = y; switch(control) { case 1: y--; yy = y-1; break; case 2: y++; yy = y+1; break; case 3: x--; xx = x-1; break; case 4: x++; xx = x+1; break; } hit = TRUE; if ( ((control == 1) (control ==2 )) && ( (y < 1) (y >= MAXY-1)) (((control == 3) (control == 4)) && ((x < 1) (x >= MAXX-1) ) ) ) { hit = FALSE; } if ( (y < 0) (y >= MAXY) (x < 0) (x >= MAXX) ) { game = GAMEOVER; control = 0; return; } for (i = 0; i < MAX; i++) { if ((place[i].st) && (x == place[i].x) && (y == place[i].y) ) { game = GAMEOVER; control = 0; return; } if ((place[i].st) && (xx == place[i].x) && (yy == place[i].y) ) { hit = FALSE; goto OUT; } } OUT: if ( (x == babyx) && (y == babyy) ) { eat = TRUE; count ++; score += (1+class) * 10; } head ++; if (head >= MAX) head = 0; place[head].x = x; place[head].y = y; place[head].st= TRUE; if (eat == FALSE) { place[tear].st = FALSE; tear ++; if (tear >= MAX) tear = 0; } else { eat = FALSE; exit = TRUE; while(exit) { babyx = rand()%MAXX; babyy = rand()%MAXY; exit = FALSE; for( i = 0; i< MAX; i++ ) if( (place[i].st)&&( place[i].x == babyx) && (place[i].y == babyy)) exit ++; } } if (head == tear) game = GAMEHAPPY; } void draw(void) { char temp[50]; int i,j; for (i = 0; i < MAX; i++ ) { setfillstyle(1,9); if (place[i].st) bar(place[i].x*15+1,place[i].y*10+1,place[i].x*15+14,place[i].y*10+9); <br> } setfillstyle(1,4); bar(babyx*15+1,babyy*10+1,babyx*15+14,babyy*10+9); setcolor(8); setfillstyle(1,8); bar(place[head].x*15+1,place[head].y*10+1,place[head].x*15+14,place[head].y*10+9); /* for( i = 0; i <= MAXX; i++ ) line( i*15,0, i*15, 10*MAXY); for( j = 0; j <= MAXY; j++ ) line( 0, j*10, 15*MAXX, j*10); */ rectangle(0,0,15*MAXX,10*MAXY); sprintf(temp,"Count: %d",count); settextstyle(1,0,2); setcolor(8); outtextxy(512,142,temp); setcolor(11); outtextxy(510,140,temp); sprintf(temp,"1P: %d",score); settextstyle(1,0,2); setcolor(8); outtextxy(512,102,temp); setcolor(12); outtextxy(510,100,temp); sprintf(temp,"Class: %d",class); setcolor(8); outtextxy(512,182,temp); setcolor(11); outtextxy(510,180,temp); } main() { int pause = 0; char temp[50]; int d,m; int key; int p; static int keydown = FALSE; int exit = FALSE; int stchange = 0; d = VGA; m = VGAMED; initgraph( &d, &m, "" ); setbkcolor(3); class = 3; init(); p = 1; while(!exit) { if (kbhit()) { key = bioskey(0); switch(key) { case UP: if( (control != 2)&& !keydown) control = 1; keydown = TRUE; break; case DOWN: if( (control != 1)&& !keydown) control = 2; keydown = TRUE; break; case LEFT: if( (control != 4)&& !keydown) control = 3; keydown = TRUE; break; case RIGHT: if( (control != 3)&& !keydown) control = 4; keydown = TRUE; break; case ESC: exit = TRUE;break; case ENTER: init();break; case PAGEUP: class --; if (class<0) class = 0; break; case PAGEDOWN: class ++;if (class>7) class = 7; break; case KEY_U: if( ( (control ==1) (control ==2))&& !keydown) control = 3; else if(( (control == 3) (control == 4))&& !keydown) control = 1; keydown = TRUE; break; case KEY_K: if( ( (control ==1) (control ==2))&& !keydown) control = 4; else if(( (control == 3) (control == 4))&& !keydown) control = 2; keydown = TRUE; break; case CTRL_P:pause = 1 - pause; break; } } stchange ++ ; putpixel(0,0,0); if (stchange > gamedelay[class] + gamedelay2[hit]) { stchange = 0; keydown = FALSE; p = 1 - p; setactivepage(p); cleardevice(); if (!pause) nextstatus(); else { settextstyle(1,0,4); setcolor(12); outtextxy(250,100,"PAUSE"); } draw(); if(game==GAMEOVER) { settextstyle(0,0,6); setcolor(8); outtextxy(101,101,"GAME OVER"); setcolor(15); outtextxy(99,99,"GAME OVER"); setcolor(12); outtextxy(100,100,"GAME OVER"); sprintf(temp,"Last Count: %d",count); settextstyle(0,0,2); outtextxy(200,200,temp); } if(game==GAMEHAPPY) { settextstyle(0,0,6); setcolor(12); outtextxy(100,300,"YOU WIN"); sprintf(temp,"Last Count: %d",count); settextstyle(0,0,2); outtextxy(200,200,temp); <br> } setvisualpage(p); } } closegraph(); }

上一篇:骑士漫游和八皇后 人气:404
下一篇:如何学好C 人气:479
浏览全部C/C++的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-7-24 Sablog-X v2.0 预览版
2008-7-24 帝国备份王EmpireBak 2008 正式版
2008-7-24 网趣网上购物系统时尚版 v8.2
2008-7-24 纵横B2B电子商务系统XYECS!B2B v
2008-7-24 e路小说小偷 v1.2.0723
2008-7-24 凌风美女图片站程序 v2.2
2008-7-24 TOM15电影收索程序
2008-7-24 清风信息自动采集生成系统 v1.0
2008-7-24 QQ邮箱编辑器 v1.0 (小小菜刀ASP
2008-7-19 UltraEdit 简体中文增强版 14.10
2008-7-19 CentOS 5.2 i386 LiveCD
2008-7-19 Snapture多功能相机 v1.4
2008-7-19 iAcces中文输入法 v1.0Build016
2008-7-19 Cookbook烹饪秘籍 v2.5
2008-7-19 苹果专用DVD转换工具 v1.1.59汉化
2008-7-19 Modem修复软件ZiPhone修改版04.0
2008-7-19 AgileMessenger即时通讯工具美化
2008-7-19 Sketches画图软件 v0.7b6破解版


  发表评论
姓 名: 验证码:
内 容:
[ 汉字翻译拼音 ] [ 广告代码 ] [ 符号对照表 ] [ 进制转换 ] [ 经典小工具 ] [ 个税计算 ] [ 汉字简繁转换 ] [ 普通单位换算 ] [ 公制单位换算 ]
[ 生辰老黄历 ] [ 国内电话区号 ] [ 国家代码与域名缩写 ] [ 文字加密解密 ] [ 健康查询 ] [ 万年历 ] [ 手机号码查询 ] [ ip搜索 ] [ Google PR查询 ]
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号
ホームページ制作 不動産検索システム 求人情報
防水工事·改修工事 フットサル大会 探偵