2048源代码

时间:2018-06-18 16:59:18
【文件属性】:

文件名称: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<>makesure; while(makesure!=1&&makesure!=0) { cout<<"输入不正确,请重新输入!"<>makesure; } } cout<<"再见!"<


网友评论