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

溫馨提示×

溫馨提示×

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

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

C語言實現掃雷小游戲

發布時間:2020-10-04 10:50:55 來源:腳本之家 閱讀:133 作者:Stephen_curry_66 欄目:編程語言

本文實例為大家分享了C語言實現掃雷游戲的具體代碼,供大家參考,具體內容如下

主函數:main.c

#include "game.h"
void Menu()
{
  printf("##########################\n");
  printf("##1.play 0.exit##########\n");
  printf("##########################\n");
  printf("## Please Enter select! ##\n");
}
 
int main()
{
  Menu();
  srand((unsigned int)time(NULL));
  int quit = 0;
  while (!quit)
  {
   int select = 0;
   printf("請輸入你的選擇:\n");
   scanf("%d", &select);
   switch (select)
   {
   case 1:
   game();
   break;
   case 2:
   quit = 1;
   break;
   default :
   printf("你輸入有誤,請重新輸入:\n");
   break;
   }
  }
  printf("Bye Bye!\n");
  system("pause");
  return 0;
}

子函數:game.c

#include "game.h"
void game()
{ 
 char mine[ROWS][COLS] = { 0 }; 
 char show[ROWS][COLS] = { 0 }; 
 memset(mine, '0', sizeof(mine));//初始化數組置為0
 memset(show, '*', sizeof(show));//初始化數組置為* 
 int no_y, no_x; 
 set_mine(mine,ROWS,COLS,&no_x,&no_y);//布雷 ‘1'表示雷 
 int x = 0; 
 int y = 0; 
 int time = 100 - NUM; 
 while (time > 0) 
 { 
 system("cls");//清屏 
 Show(show, ROWS, COLS);//打印 棋盤 
 printf("請輸入坐標:\n"); 
 scanf("%d%d", &x, &y); 
 if (x<1 || x>10 || y<1 || y>10) 
 { 
 printf("你輸入有誤,請重新輸入:\n"); 
 continue; 
 } 
 if (show[x][y] != '*') 
 { 
 printf("你輸入有誤,請重新輸入:\n"); 
 continue; 
 } 
 if (mine[x][y] == '1') 
 { 
 if (time == 80)//如果第一次有雷,用一個沒雷的與這個交換 
 { 
 mine[x][y] = '0'; 
 mine[no_y][no_y] = '1'; 
 } 
 else 
 { 
 printf("game over!\n"); 
 Show(mine, ROWS, COLS); 
 break; 
 } 
 } 
 show[x][y] = get_mine_count(mine, x, y) + '0';
 Expand(mine, show, x, y);
 time--; 
 }

}
void set_mine(char mine[ROWS][COLS],int col,int row,int *no_x,int *no_y)//聲明布雷函數
{ 
 int count = NUM;//設置計數器,統計布雷的個數
 while (count > 0) 
 { 
 int x = rand() % (col-2) + 1; 
 int y = rand() % (col-2) + 1; 
 if ((mine[x][y]) == '0') 
 { 
 mine[x][y] = '1'; 
 count--; 
 } 
 } 
 for (int i = 1; i <= 10; i++) 
 { 
 for (int j = 1; i <= 10; j++) 
 { 
 if (mine[i][j] == '0') 
 { 
 no_x = i; 
 no_y = j; 
 return; 
 } 
 } 
 }
}
void Show(char mine[ROWS][COLS], int row, int col)//聲明打印棋盤函數
{ 
 int i = 0; 
 int j = 0; 
 printf(" ");
 for (i = 1; i <= 10 ; i++) 
 { 
 printf("%2d |", i); 
 } 
 printf("\n"); 
 for (i = 1; i <= 11; i++) 
 { 
 printf("----"); 
 } 
 printf("\n"); 
 for (i = 1; i <= 10 ; i++) 
 { 
 printf("%2d |", i); 
 for (j = 1; j <= 10; j++) 
 { 
 printf("%2c |", mine[i][j]); 
 } 
 printf("\n"); 
 for (int i = 1; i <= 11; i++) 
 { 
 printf("----"); 
 } 
 printf("\n"); 
 }
}
int get_mine_count(char mine[ROWS][COLS], int x, int y)//雷數統計
{ 
 return mine[x - 1][y - 1]+ mine[x][y - 1] +\
 mine[x + 1][y - 1]+ mine[x + 1][y]\ 
 + mine[x + 1][y + 1]+ mine[x][y + 1] + \
 + mine[x - 1][y + 1]+ mine[x - 1][y] - 8 * '0';
}
void Expand(char mine[ROWS][COLS], char show[ROWS][COLS], int x, int y)
{ 
 if (x >= 1 && x <= 10 && y >= 1 && y <= 10) 
 { 
 if (get_mine_count(mine, x, y) + '0' == '0') //表示x,y周圍沒雷 
 { 
 show[x][y] = '0'; 
 if (show[x - 1][y - 1] == '*') 
 { 
 Expand(mine, show, x - 1, y - 1); 
 } 
 if (show[x - 1][y] == '*') 
 { 
 Expand(mine, show, x - 1, y ); 
 } 
 if (show[x - 1][y + 1] == '*') 
 { 
 Expand(mine, show, x - 1, y + 1); 
 } 
 if (show[x ][y - 1] == '*') 
 { 
 Expand(mine, show, x , y - 1); 
 } 
 if (show[x][y + 1] == '*') 
 { 
 Expand(mine, show, x , y + 1); 
 } 
 if (show[x + 1][y - 1] == '*') 
 { 
 Expand(mine, show, x + 1, y - 1); 
 } 
 if (show[x + 1][y] == '*') 
 { 
 Expand(mine, show, x + 1, y ); 
 } 
 if (show[x + 1][y + 1] == '*') 
 { 
 Expand(mine, show, x + 1, y + 1); 
 } 
 } 
 }
}

函數聲明:game.h

#ifndef _GAME_H_
#define _GAME_H_
#include<stdio.h>
#include<Windows.h>
#pragma warning(disable:4996)
#include<time.h>
#include<string.h>

#define ROWS 12
#define COLS 12

#define NUM 20 //雷數
  
 
void game();
void set_mine(char mine[ROWS][COLS],int row, int col, int *no_x, int *no_y);
void Show(char mine[ROWS][COLS], int row, int col);
int get_mine_count(char mine[ROWS][COLS], int x, int y);
void Expand(char mine[ROWS][COLS], char show[ROWS][COLS], int x, int y);
 
#endif

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

岐山县| 南川市| 嘉黎县| 通城县| 兴安县| 团风县| 古田县| 望都县| 睢宁县| 肃南| 阿尔山市| 庄河市| 车致| 通许县| 西盟| 铁岭县| 弥勒县| 鸡泽县| 兰溪市| 宁陵县| 札达县| 财经| 鹤岗市| 佛山市| 江达县| 航空| 商都县| 望江县| 镇江市| 江都市| 延安市| 余干县| 舒城县| 固原市| 尼玛县| 绥滨县| 寻甸| 邵阳市| 全南县| 瓦房店市| 改则县|