91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言如何寫一個掃雷小游戲

發布時間:2021-08-11 14:43:01 來源:億速云 閱讀:150 作者:chen 欄目:編程語言

本篇內容主要講解“C語言如何寫一個掃雷小游戲”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C語言如何寫一個掃雷小游戲”吧!

接下來先介紹掃雷游戲要實現的功能:

首先,要對雷陣進行初始化,在初始化的時候要注意要定義兩個數組,一個是讓我們掃雷的陣,另外一個就是顯示某一個地方的周圍的雷的總個數的矩陣,在初始化的時候要注意為了避免傳址的問題,我們把它寫在主函數里面。

char mine[rows][cols];char show[rows][cols]; int i = 0; int j = 0; for (i = 0; i < rows - 1; i++) { for (j = 0; j < cols - 1; j++) {  mine[i][j] = '0';  show[i][j] = '*'; } }

接下來就是電腦在隨機布局雷陣的函數,這個函數要用到rand()函數,來產生隨機值,在雷陣里面隨機布雷。

void set_mine(char mine[rows][cols]){ int count = Count; int x = 0; int y = 0; srand((unsigned)time(NULL)); while (count) { x = rand() % 9 + 1; y = rand() % 9 + 1; if (mine[x][y] == '0') {  mine[x][y] = '1';  count--; } }}

再有就是計算雷的個數的函數,要講某一個坐標位置的周圍8個位置的雷的個數算出來,并且將個數顯示出來

int get_num(char mine[rows][cols], int x, int y){ int count = 0; if (mine[x - 1][y - 1] == '1')//左上方 { count++; } if (mine[x - 1][y] == '1')//左邊 { count++; } if (mine[x - 1][y + 1] == '1')//左下方 { count++; } if (mine[x][y - 1] == '1')//上方 { count++; } if (mine[x][y + 1] == '1')//下方 { count++; } if (mine[x + 1][y - 1] == '1')//右上方 { count++; } if (mine[x + 1][y] == '1')//右方 { count++; } if (mine[x + 1][y + 1] == '1')//右下方 { count++; } return count;}

將掃雷函數的各個函數都實現了之后,我們來看一下完整的代碼

頭文件game.h

#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<stdlib.h>#include<time.h>#include<string.h>#define rows 11#define cols 11#define Count 10 int menu();//菜單函數void display(char show[rows][cols]);int Game(char mine[rows][cols],char show[rows][cols]);//游戲void set_mine(char mine[rows][cols]);//設置雷的位置int Sweep(char mine[rows][cols], char show[rows][cols]);//開始掃雷int get_num(char mine[rows][cols], int x, int y);//計算雷的個數

實現函數game.c

#include"game.h" //菜單函數int menu(){ printf("********************************************\n"); printf("********************************************\n"); printf("*************welcome to saolei*************\n"); printf("*************  1.   play  *************\n"); printf("*************  0.   exit  *************\n"); printf("********************************************\n"); printf("********************************************\n"); return 0;}  //設置雷的位置void set_mine(char mine[rows][cols]){ int count = Count; int x = 0; int y = 0; srand((unsigned)time(NULL)); while (count) { x = rand() % 9 + 1; y = rand() % 9 + 1; if (mine[x][y] == '0') {  mine[x][y] = '1';  count--; } }} //打印下棋完了顯示的界面void display(char show[rows][cols]) { int i = 0; int j = 0; printf(" "); for (i = 1; i < cols - 1; i++) { printf(" %d ", i); } printf("\n"); for (i = 1; i < rows - 1; i++) { printf("%d", i); for (j = 1; j < cols - 1; j++) {  printf(" %c ", show[i][j]); } printf("\n"); }} //計算雷的個數int get_num(char mine[rows][cols], int x, int y){ int count = 0; if (mine[x - 1][y - 1] == '1')//左上方 { count++; } if (mine[x - 1][y] == '1')//左邊 { count++; } if (mine[x - 1][y + 1] == '1')//左下方 { count++; } if (mine[x][y - 1] == '1')//上方 { count++; } if (mine[x][y + 1] == '1')//下方 { count++; } if (mine[x + 1][y - 1] == '1')//右上方 { count++; } if (mine[x + 1][y] == '1')//右方 { count++; } if (mine[x + 1][y + 1] == '1')//右下方 { count++; } return count;}//掃雷int Sweep(char mine[rows][cols], char show[rows][cols]){ int count = 0; int x = 0; int y = 0; while (count!=((rows-2)*(cols-2)-Count)) { printf("請輸入坐標:\n"); scanf("%d%d", &x, &y); if (mine[x][y] == '1') {  printf("你踩到雷了!\n");  return 0; } else {  int ret = get_num(mine, x, y);  show[x][y] = ret + '0';  //set_mine(mine);  display(show);  count++; } } printf("恭喜你贏了!\n"); display(mine); return 0;}  //游戲int Game(char mine[rows][cols],char show[rows][cols]){ set_mine(mine); display(show); //display(mine);//可以將雷的位置顯示出來 Sweep(mine,show); return 0;}

最后就是測試函數text.c

#include"game.h" int main(){ int input = 0; char mine[rows][cols]; char show[rows][cols]; int i = 0; int j = 0; for (i = 0; i < rows - 1; i++) { for (j = 0; j < cols - 1; j++) {  mine[i][j] = '0';  show[i][j] = '*'; } } menu(); while (1) { printf("請選擇:"); scanf("%d", &input); if (input == 1) {  printf("進入游戲\n");  Game(mine,show);  break; } else if (input == 0) {  printf("退出游戲!\n");  exit(0);  break; } else {  printf("輸入有誤!\n"); } } return 0;}

到此,相信大家對“C語言如何寫一個掃雷小游戲”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

深水埗区| 临桂县| 临西县| 新津县| 宁南县| 新干县| 五大连池市| 岐山县| 桐梓县| 土默特右旗| 南投市| 巴彦淖尔市| 兴业县| 环江| 芮城县| 许昌县| 辰溪县| 西乌| 兰西县| 会昌县| 响水县| 沈丘县| 隆子县| 井研县| 张家界市| 贵溪市| 兴安盟| 浦东新区| 安泽县| 曲阳县| 崇州市| 定兴县| 丹巴县| 大名县| 福海县| 丹寨县| 南开区| 开化县| 六枝特区| 西藏| 沂源县|