新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本文实例为大家分享了C++实现走迷宫小游戏的具体代码,供大家参考,具体内容如下
创新互联建站主要从事网站设计制作、成都网站设计、网页设计、企业做网站、公司建网站等业务。立足成都服务零陵,十年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18980820575源码下载:C++实现走迷宫小游戏
主程序代码:
#include#include #include #include #include #include using namespace std; char pr[10]={1,' ','E','O'} ; int level,n,m,map[50][50],i,j,x,y,k,ex,ey; char c[1001]; int main(){ system("cls"); puts("if you no full screen,please press full screen"); getch(); system("cls"); puts("please choose level"); again:; cin>>level; if(level>1||level<1){ puts("haven't this level"); goto again; } puts("loading..."); sprintf(c,"%d.map",level); freopen(c,"r",stdin); cin>>n>>m; for(i=1;i<=n;i++) for(j=1;j<=m;j++) cin>>map[i][j]; fclose(stdin); for(i=1;i<=n;i++) for(j=1;j<=m;j++) if(map[i][j]==3){ x=i; y=j; } else if(map[i][j]==2){ ex=i; ey=j; } while(x!=ex&&y!=ey){ system("cls"); for(i=1;i<=n;i++,putchar('\n')) for(j=1;j<=m;j++) putchar(pr[map[i][j]]); k=getch(); if(k=='w') if(map[x-1][y]&&(x-1)){ map[x-1][y]=3; map[x][y]=1; x--; } if(k=='s') if(map[x+1][y]&&(x+1)<=n){ map[x+1][y]=3; map[x][y]=1; x++; } if(k=='a') if(map[x][y-1]&&(y-1)){ map[x][y-1]=3; map[x][y]=1; y--; } if(k=='d') if(map[x][y+1]&&(y+1)<=m){ map[x][y+1]=3; map[x][y]=1; y++; } } system("cls"); return 0; }
另外有需要云服务器可以了解下创新互联建站www.cdcxhl.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。