> For the complete documentation index, see [llms.txt](https://g.aqde.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://g.aqde.net/books/minesweeper.md).

# 扫雷的入门教学

扫雷是大多数电脑中自带安装的一个小游戏，在windows电脑中可通过“开始”菜单->“游戏”找到它。

它是一种对记忆和推理能力进行练习的简单测试，在游戏中练习并熟练鼠标的操作，重点区分鼠标左键与右键的使用方法。

## 游戏目标：

找出空方块并避免触雷。

![高级扫雷成功画面](/files/-MGHjQHKMmt5Mt1DXgft)

看起来很容易，不是吗？

## 规则和基本要求

### 游戏目标

找出空方块，同时避免触雷。清除扫雷区的速度越快，得分就越高。

### 玩法

扫雷的规则非常简单：

挖开地雷，游戏即告结束（失败）。

挖开空方块，可以继续玩。

挖开数字，则表示在其周围的八个方块中共有多少个雷，可以使用该信息推断能够安全单击附近的哪些方块。

### 扫雷等级

扫雷有三个标准扫雷区可供选择，各扫雷区的扫雷难度依次递增。

初级： 81 个方块、10 个雷

中级： 256 个方块、40 个雷

高级： 480 个方块、99 个雷

还可以创建自定义扫雷区。扫雷游戏支持最多有 720 个方块和 668 个雷的扫雷区。

### 提示与技巧

标记地雷。 如果您认为某个方块可能藏有地雷，请右键单击它。这会在该方块上做一个旗标。

研究图案。 如果一行中有三个方块显示为 2-3-2，您就会知道该行旁边可能排列着三个雷。如果一个方块显示为 8，则它周围的每个方块下面都有一个雷。

浏览未探测的。 如果不确定下一个单击位置，可以尝试清除某些未探测的区域。在未标记方块的中间单击比在可能有雷的区域单击要好一些。

## 全球的扫雷比赛网站

在全世界各个国家都有很多人热爱扫雷，我们可以通过《扫雷世界》这个网站与所有人竞赛：<https://minesweeper.online/zh/>

### 成就系统：<https://minesweeper.online/zh/achievements>

![扫雷世界的成就系统](/files/-MGrf1nb4jWobsZKECjb)

### 网站中的一些参数定义：

ZiNi 點擊最小値

H.ZiNi Human ZiNi ZiNi仿人類算灋

IoE Index of Efficiency 效率指數 3BV / Cl

ThrP 破空率 IoE / Corr

Corr Correctness 準確率 ECl / Cl

ZNE ZiNi Efficiency 點擊效率 ZiNi / Cl

ZNT 有效點擊效率 ZiNi / ECl

RQP Rapport Qualité Prix​​ (RTime+1) / 3BV/s

IoS Index of Speed 速率指數 log (3BV) / log (Time - 1)

感谢[一位玩家](https://minesweeper.online/zh/player/2731349)在聊天室中提供的回复

## 网络资料

参考1：<http://www.minesweeper.info/wiki/Strategy>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://g.aqde.net/books/minesweeper.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
