# Minesweeper **Repository Path**: andycode3759/minesweeper ## Basic Information - **Project Name**: Minesweeper - **Description**: 摸鱼神器 - **Primary Language**: C++ - **License**: Unlicense - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-10 - **Last Updated**: 2023-12-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # C++ 扫雷 在 9x9 的棋盘中标记出全部的 10 个雷即可获胜。 可用指令: - `c (x) (y)`:点击坐标为 `(x,y)` 的格子。 - `f (x) (y)`:标记/取消标记坐标为 `(x,y)` 的格子。 `x` 和 `y` 是 `1~9` 的整数。 游戏开始前可以输入随机数种子,相同种子生成的地图是完全一致的 ~~(从而可以背板)~~ 。