C语言编程2048小游戏
生活休闲 >
游戏 >
其它 >
文档预览
9 页
877 浏览
10 收藏
5.0分
摘要:/*ByReason*/#include<iostream>#include<iomanip>#include<math.h>#include<stdlib.h>#include<time.h>#include<conio.h>//为了读取方向键#include<windows.h>usingnamespacestd;//srand((unsigned)time(NULL));//随机数种子不能用在这里intpane[4][4];//棋盘intN=1;//2的n次方voidshowpane()//显示棋盘{cout<<setw(46)<<"X2048byReason"<<endl;cout<<setw(50)<<"|-----------------------|"<<endl;for(inti=0;i<=3;i++){cout<<setw(24)<<"";for(intj=0;j<=3;j++){//SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_RED);cout<<setw(2)<<"|"<<setw(4)<<pane[i][j];if(j==3){cout<<setw(2)<<"|"<<endl;cout<<setw(50)<<"|-----------------------|"<<endl;}}}}voidnewgame()//开始游戏{N=1;for(inti=0;i<=3;i++)//初始化棋盘for(intj=0;j<=3;j++)pane[i][j]
温馨提示:当前文档最多只能预览
5 页,若文档总页数超出了
5 页,请下载原文档以浏览全部内容。
本文档由 匿名用户 于 2022-10-10 23:10:19上传分享