栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C语言控制台实现字符飞机大战

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C语言控制台实现字符飞机大战

本文实例为大家分享了C语言实现字符飞机大战的具体代码,供大家参考,具体内容如下

先看看效果吧

大一的时候做的,当时没有好的代码习惯,所以代码有点乱,代码直接复制就能用了,功能可以自行拓展。

代码:

#include 
#include 
#include 
int main () {
 int life=6;//生命
 int i,j,plane_x,plane_y,a;
 plane_x=8,plane_y=15;//初始化飞机
 char getc; //方向获取
 
 int score=0; //得分 // 1 1 1 1 1 1 1
 char Map[17][17]= { //0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6
 {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},//0
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//1
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//2
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//3
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//4
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//5
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//6
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//7
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//8
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//9
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//10
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//11
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//12
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//13
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//14
 {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},//15
 {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
 };//16
 for(;;) { //实现游戏循环
 int x,y;//随机出现的敌机
 x=rand()%15+1;
 y=rand()%14+1;
 Map[y][x]=4;
 Map[plane_y][plane_x]=2;//初始化飞机
 for(i=0; i<17; i++) { //打印地图
 for(j=0; j<17; j++) {
 if(Map[i][j]==1)//1为墙
 printf("▓");
 else if(Map[i][j]==0)
 printf(" ");
 else if(Map[i][j]==2)//2为飞机 初始map[15][7] (16,8)
 printf("Ж");
 else if(Map[i][j]==3)//3 子弹
 printf("!!");
 else if(Map[i][j]==4)//4 敌机
 printf("Ψ");
 }
 printf("n");
 } //打印地图结束
 printf("n Ж生命:");
 
 for(i=0; i0&&plane_x<16&&plane_y>0&&plane_y<16) {
 getc=getch();
 if (getc=='d') { //wasd
 ++plane_x;
 if(plane_x<=0)
 plane_x=1;
 else if(plane_x>=16)
 plane_x=15;
 else if(Map[plane_y][plane_x]==4) { //碰撞敌机,退出
 life--;
 if(life==0)
 break;
 }
 }
 if (getc=='a') {
 --plane_x;
 if(plane_x<=0)
 plane_x=1;
 else if(plane_x>=16)
 plane_x=15;
 else if(Map[plane_y][plane_x]==4) { //碰撞敌机,当life==0退出
 life--;
 if(life==0)
 break;
 }
 }
 if (getc=='w') {
 --plane_y;
 if(plane_y<=0)
 plane_y=1;
 else if(plane_y>=16)
 plane_y=15;
 else if(Map[plane_y][plane_x]==4) { //碰撞敌机,退出
 life--;
 if(life==0)
 break;
 }
 }
 if (getc=='s') {
 ++plane_y;
 if(plane_y<=0)
 plane_y=1;
 else if(plane_y>=16)
 plane_y=15;
 else if(Map[plane_y][plane_x]==4) { //碰撞敌机,退出
 life--;
 if(life==0)
 break;
 }
 }
 if (getc=='e') {
 
 for(a=plane_y-1; a>=1; a--) {
 if(Map[a][plane_x]==4) { //
 score++;
 Map[a][plane_x]=0;//清除敌机
 break;
 }
 Map[a][plane_x]=3;
 }
 }
 }
 system("cls");
 }
 system("cls");
 printf("总分:%d",score);
 getch();
 return 0;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/61052.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号