In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly explains "C language array how to achieve mine clearance game," interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let Xiaobian take you to learn "C language array how to achieve mine clearance game" bar!
1. What is mine clearance?
Baidu Encyclopedia: "Mine Clearance" is a popular puzzle Mini games, released in 1992. The goal of the game is to find all the non-thunder grids in the shortest time according to the numbers that appear on the grid, while avoiding stepping on thunder, stepping on a thunder is a total loss.
2、程序框架
程序整体的框架可以搬用上篇三子棋的,这种框架也可以当作一种通用的形式,加以运用。
2.1 主函数int main(){ int input = 0; srand((unsigned int)time(NULL));//产生随机数 do { menu();//菜单提示 printf("请输入 ==> ");//输入1或0, scanf("%d", &input); switch (input)//根据输入选择是否玩游戏 { case 1: game();//玩游戏的具体实现 break; case 0: printf("退出游戏\n"); break; default: printf("选择错误,重新选择!\n"); break; } } while (input); return 0;}2.2 函数menu
输出提示菜单,提醒玩家,1是玩游戏,0是退出游戏
void menu(){ printf("******************************\n"); printf("********* 1. play ********\n"); printf("********* 0. exit ********\n"); printf("******************************\n");}2.3 函数game
数组mine,初始化后放入字符 ‘0’
mine数组后续放入10个雷,有雷的位置用字符 ‘1’ 表示,没有雷的位置仍然是字符 ‘0’
10个雷的位置随机生成
数组show,初始化后放入字符 ‘*’
字符 ‘*’ 是将生成雷的位置遮挡住,不让玩家看见
show数组放入棋盘中关于具体坐标周围的雷的信息
如果坐标周围有雷,将统计雷的个数,并显示在这个坐标上
void game(){ printf("开始玩游戏!\n"); //扫雷游戏的实现 //mine数组是用来存放布置好的雷的信息 //就10个雷在什么位置 char mine[ROWS][COLS] = { 0 };//'0' //show数组是用来存放排查出的雷的信息 //坐标周围有几个雷 char show[ROWS][COLS] = { 0 };//'*' //初始化棋盘 init_board(mine, ROWS, COLS, '0'); init_board(show, ROWS, COLS, '*'); //打印棋盘 //show_board(mine, ROW, COL);//全是字符'0' //show_board(mine, ROW, COL);//全是'*' //布置雷 set_mine(mine, ROW, COL);//雷的数组 //show_board(mine, ROW, COL);这是显示10个雷在哪里 show_board(show, ROW, COL);//输出*暂时掩盖雷在哪里 //排查雷 find_mine(mine, show, ROW, COL);}2.3.1 函数init_board
init_board初始化参数是将棋盘初始化,让整个棋盘显示字符 ‘0’ 和 ‘*’
//初始化棋盘 参数:行数 列数 行数 列数 字符0或* void init_board(char arr[ROWS][COLS], int rows, int cols, char set){//set表示初始化传进来的字符是0 还是 * int i = 0; int j = 0; for (i = 0; i < rows; i++) { for (j = 0; j < cols; j++) { arr[i][j] = set; } }}2.3.2 函数show_board
show_board是展示棋盘的,可以看到棋盘里面雷的信息,以及后续扫雷时,棋盘的具体状态
//展示棋盘void show_board(char arr[ROWS][COLS], int row, int col){ int i = 0; int j = 0; printf("------------扫雷------------\n"); for (i = 0; i
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.