⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stdafx.cpp

📁 这是一个好玩的扫雷程序,用vc实现,其亮点是位图的操作.
💻 CPP
字号:
// stdafx.cpp : source file that includes just the standard includes
//	WinMine.pch will be the pre-compiled header
//	stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"

int m_nRow,m_nColumn;
int Matrix[24][40];//一个与方框同步的数组,行最多24行,宽可以有30
int bombs;//雷数
LONG m_nWidth,m_nHeigth;//记录每一张图片的宽度与高度
bool MatrixLabel[24][40]; //标记是否访问过方块
int R_MatrixLabel[24][40];
int m_nVisit;
int RFlag;//记录红旗的个数
int m_ntime;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -