日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > c/c++ >内容正文

c/c++

2048小游戏【c++】

發(fā)布時(shí)間:2024/5/15 c/c++ 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 2048小游戏【c++】 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
#include <iostream> #include<cstdlib> #include<time.h> using namespace std;int temp[4][4] = {{0,0,0,0},{0,0,0,0},{0,0,0,0},{0,0,0,0} }; #define ROW 4 #define COL 4int x = -1, y = -1,countmp=0; /*打印數(shù)據(jù)*/ void printftemp() {for (int i = 0; i < ROW; i++){for (int j = 0; j < COL; j++){if (temp[i][j] != 0){countmp++;}cout << temp[i][j]<<" ";}cout << endl;} }void move_right() {for (int i = 0; i < ROW; i++){for (int j = (COL - 2); j >= 0; j--){if (temp[i][j + 1] == temp[i][j]){temp[i][j+1] *= 2;temp[i][j] = 0;}}}for (int i = 0; i < ROW; i++){int x = COL - 1, y = COL - 1;while (y >= 0){if (temp[i][x] != 0){x--;y--;}else{while (y >= 0){if (temp[i][y] != 0){temp[i][x] = temp[i][y];temp[i][y] = 0;break;}y--;}}}} }void move_left() {for (int i = 0; i < ROW; i++){for (int j = 1; j < COL; j++){if (temp[i][j - 1] == temp[i][j]){temp[i][j - 1] *= 2;temp[i][j] = 0;}}}for (int i = 0; i < ROW; i++){int x =0, y =0;while (y<COL){if (temp[i][x] != 0){x++;y++;}else{while (y<COL){if (temp[i][y] != 0){temp[i][x] = temp[i][y];temp[i][y] = 0;break;}y++;}}}}}void move_up() {for (int j = 0; j < COL; j++){for (int i = 1; i < ROW; i++){if (temp[i-1][j]==temp[i][j]){temp[i - 1][j] *= 2;temp[i][j] = 0;}}}for (int j = 0; j < COL; j++){int x = 0, y = 0;while (y < ROW){if (temp[x][j] != 0){x++;y++;}else{while (y < ROW){if (temp[y][j] != 0){temp[x][j] = temp[y][j];temp[y][j] = 0;break;}y++;}}}}}void move_down() {for (int j = 0; j < COL; j++){for (int i = ROW-2; i>=0; i--){if (temp[i + 1][j] == temp[i][j]){temp[i + 1][j] *= 2;temp[i][j] = 0;}}}for (int j = 0; j < COL; j++){int x = ROW-1, y = ROW - 1;while (y>=0){if (temp[x][j] != 0){x--;y--;}else{while (y>=0){if (temp[y][j] != 0){temp[x][j] = temp[y][j];temp[y][j] = 0;break;}y--;}}}} }void move_random() {x = rand() % 4;y = rand() % 4;while (temp[x][y] != 0) {x = rand() % 4;y = rand() % 4;}temp[x][y] = 2; } /* 0 上,1 下,2 左,3 右 */ int main() {int input = 0;srand((unsigned)time(NULL));move_random();printftemp();cout << endl;while (true){countmp = 0;cout <<"please input:";cin >> input;switch (input){case 0:move_up();break;case 1:move_down();break;case 2:move_left();break;case 3:move_right();break;default:break;}move_random();printftemp();if (countmp >= 16){cout << "game over" << endl;break;}}return 0; }

總結(jié)

以上是生活随笔為你收集整理的2048小游戏【c++】的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。