首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > C/C++/VC++ > game2048

game2048

  • 资源大小:1.71 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: c++

资 源 简 介

#include #include #include #include #include #include #include #include using namespace std; int table[16]={0},Score=0,Max_number=0; bool allprint=true; int&at(int* pn,int x,int y=-1,bool rev=false){     return rev?(~y?pn[x*4+y]:pn[x]):(~y?pn[y*4+x]:pn[x]); } bool canMove(int* pn,int direction){     for(int i=0,sum=0;i<4;i++){         for(int j=0;j<4;j++){             if(!at(pn,i,j,direction==0))return true;             if(j&&at(pn,i,j,direction==0)==at(pn,i,j-1,direction==0))return true;         }     } &n

文 件 列 表

可用1.cpp

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.157433s