扫雷简单版

简介: 关于c语言设计的扫雷小游戏

@TOC

前言

代码解读在代码中

1.test.c

#include"game.h"
void menu()
{
    printf("***********************\n");
    printf("*******1.play 0.exit***\n");
    printf("***********************\n");
}
void game()
{
    char mine[rows][cols] = { 0 };
    char slow[rows][cols] = { 0 };//初始化 多了两行两列 就是为了不越界 
    initboard(mine, row+2, col+2,'0');//假设为9*9的雷盘 变成11*11是为了防止在最边上的坐标寻找周围8个坐标时 越界
    initboard(slow, row+2, col+2, '*');//初始化 我们要看到的雷盘
    displayboard(slow, row, col);//打印雷盘
    setmine(mine, col, row);//布置雷
    findmine(mine,slow, row, col);//排雷
}
int main()
{
    srand((unsigned int)time(NULL));
    int input = 0;
    do
    {
        menu();
        printf("输入数字:>");
        scanf("%d", &input);
        switch(input)
        {
        case 1:
            game();
            break;
        case 0:
            printf("退出游戏\n");
            break;
        default:
            printf("输入错误\n");
            break;
        }
    } while (input);
    return 0;
}

2.game.h

#define _CRT_SECURE_NO_WARNINGS
#define row  9
#define col  9
#define rows row+2
#define cols col+2
#define easycount 10
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void initboard(char board[rows][cols], int Rows, int Cols);
void displayboard(char board[row][col], int Row, int Col);
void setmine(char mine[row][col], int Row, int Col);
void findmine(char mine[row][col],char  slow[row][col], int Row, int Col);

3.game.c

#include"game.h"
void initboard(char board[rows][cols], int Rows, int Cols,char set)
{
    int i = 0;
    int j = 0;
    for (i = 0; i < Rows; i++)
    {
        for (j = 0; j < Cols; j++)
        {
            board[i][j] = set;// mine雷盘是用来埋雷的 要传过来'0'
        }                     //slow雷盘是用来排查雷的 要传过来'*'  
    }
}
void displayboard(char board[row][col], int Row, int Col)//打印雷盘
{
    int i = 0;
    int j = 0;//实际看到的9*9的雷盘 所以传过来 行 9 列 9
    for (i = 1; i <= Row; i++)
    {
        for (j = 1; j <= Col; j++)
        {
            printf("%c ", board[i][j]);
        }
        printf("\n");
    }
}
void setmine(char mine[row][col], int Row, int Col)//布置雷
{
    int count = 10;//设置雷数为10
    while (count)
    {
        int x = rand() % row + 1;//将x y的坐标设为随机数
        int y = rand() % col + 1;
        if (mine[x][y] == '0')
        {
            mine[x][y] = '1';
            count--;
        }
    }
}
int nofind(char mine[row][col], int x, int y)//查看坐标的周围8个坐标是否有雷
{
    return  (mine[x - 1][y - 1] + mine[x - 1][y] + mine[x - 1][y + 1] +  + mine[x][y - 1] + mine[x][y + 1]
        + mine[x + 1][y] + mine[x + 1][y + 1] + mine[x + 1][y - 1]) - 8 * '0';
}//因为是字符数字 所以需要减去字符0 变成数字
void findmine(char mine[row][col], char slow[row][col],int Row, int Col)//排查雷
{
    int x = 0;
    int y = 0;
    int count = 0;
    int win = 0;
    while (win<row*col-easycount)//雷盘为9*9 -10个雷  若将不是雷的都找到了 则跳出循环
    {
        printf("输入要排查雷的坐标:>");
        scanf("%d%d", &x, &y);
        int s1 = x;
        int s2 = y;
        if(x>=1&&y<=Row&&y>=1&&y<=Col)//雷的范围
        {
            if (mine[x][y] == '1')
            {
                printf("被炸死了\n");
                displayboard(mine, row, col);
                break;
            }
            count = nofind(mine, x, y);
            slow[x][y] = count+'0';//将周围有没有雷的数字传到slow雷盘中
            displayboard(slow, row, col);  //因为里面存放字符  所以要转化到字符
            win++;
        }                        
        else
        {
            printf("坐标非法\n");
        }
    }
    if (win == row * col - easycount)//easycount 为设置雷数
    {
        printf("排雷成功\n");
        displayboard(mine, row, col);//将雷的分布打印
    }
}
目录
相关文章
|
4天前
|
弹性计算 运维 搜索推荐
三翼鸟携手阿里云ECS g9i:智慧家庭场景的效能革命与未来生活新范式
三翼鸟是海尔智家旗下全球首个智慧家庭场景品牌,致力于提供覆盖衣、食、住、娱的一站式全场景解决方案。截至2025年,服务近1亿家庭,连接设备超5000万台。面对高并发、低延迟与稳定性挑战,全面升级为阿里云ECS g9i实例,实现连接能力提升40%、故障率下降90%、响应速度提升至120ms以内,成本降低20%,推动智慧家庭体验全面跃迁。
|
4天前
|
数据采集 人工智能 自然语言处理
3分钟采集134篇AI文章!深度解析如何通过云无影AgentBay实现25倍并发 + LlamaIndex智能推荐
结合阿里云无影 AgentBay 云端并发采集与 LlamaIndex 智能分析,3分钟高效抓取134篇 AI Agent 文章,实现 AI 推荐、智能问答与知识沉淀,打造从数据获取到价值提炼的完整闭环。
380 93
|
5天前
|
域名解析 人工智能
【实操攻略】手把手教学,免费领取.CN域名
即日起至2025年12月31日,购买万小智AI建站或云·企业官网,每单可免费领1个.CN域名首年!跟我了解领取攻略吧~
|
5天前
|
SQL 人工智能 自然语言处理
Geo优化SOP标准化:于磊老师的“人性化Geo”体系如何助力企业获客提效46%
随着生成式AI的普及,Geo优化(Generative Engine Optimization)已成为企业获客的新战场。然而,缺乏标准化流程(Geo优化sop)导致优化效果参差不齐。本文将深入探讨Geo专家于磊老师提出的“人性化Geo”优化体系,并展示Geo优化sop标准化如何帮助企业实现获客效率提升46%的惊人效果,为企业在AI时代构建稳定的流量护城河。
389 156
Geo优化SOP标准化:于磊老师的“人性化Geo”体系如何助力企业获客提效46%
|
5天前
|
数据采集 缓存 数据可视化
Android 无侵入式数据采集:从手动埋点到字节码插桩的演进之路
本文深入探讨Android无侵入式埋点技术,通过AOP与字节码插桩(如ASM)实现数据采集自动化,彻底解耦业务代码与埋点逻辑。涵盖页面浏览、点击事件自动追踪及注解驱动的半自动化方案,提升数据质量与研发效率,助力团队迈向高效、稳定的智能化埋点体系。(238字)
270 158
|
13天前
|
机器人 API 调度
基于 DMS Dify+Notebook+Airflow 实现 Agent 的一站式开发
本文提出“DMS Dify + Notebook + Airflow”三位一体架构,解决 Dify 在代码执行与定时调度上的局限。通过 Notebook 扩展 Python 环境,Airflow实现任务调度,构建可扩展、可运维的企业级智能 Agent 系统,提升大模型应用的工程化能力。