文件名称:2048源代码
文件大小:6KB
文件格式:CPP
更新时间:2018-06-18 16:59:18
2048 源代码
2048源代码
主函数如下
int main() //主函数
{
system("color f9");
int makesure=1;
while(makesure)
{
system("cls");
newgame();
while(ifwin()+ifGameOver()==0)
{
int c=GetDirection();
switch(c)
{
case 2:
upmove();
addnewnumberup();
system("cls");
showpane();
break;
case 4:
downmove();
addnewnumberdown();
system("cls");
showpane();
break;
case 1:
leftmove();
addnewnumberleft();
system("cls");
showpane();
break;
case 3:
rightmove();
addnewnumberright();
system("cls");
showpane();
break;
default:
break;
}
}
cout<