首页 > 代码库 > windows程序扫雷程序设计
windows程序扫雷程序设计
具体资源见:http://download.csdn.net/detail/zhouyelihua/7604765
在学习windows程序设计中,我们希望通过一个完整的程序来学习windows API这是本人在上杨力祥老师的课程是自己写的扫雷程序。
下面是。cpp文件
#include <windows.h> #include"resource.h" #include<stdlib.h> #pragma comment( lib,"winmm.lib") //地雷的结构 class Mine{ int x,y; int value; bool zeroCursor; bool dis_or_not; int cur3; public: bool getZerocursor(); void setZerocursor(bool cur); void setDisOrNot(bool d); void setX(int xx); void setY(int yy); void setValue(int val); void dispaly(); int getvalue() ; bool getdisval() ; int getcur3(); void setcur3(int d); }; int Mine::getcur3() { return cur3; } void Mine::setcur3(int d) { cur3=d; } bool Mine::getZerocursor() { return zeroCursor; } void Mine::setZerocursor(bool cur) { zeroCursor=cur; } bool Mine::getdisval() { return (dis_or_not); } void Mine::setDisOrNot(bool d) { dis_or_not=d; } void Mine::setX(int xx) { x=xx; } void Mine::setY(int yy) { y=yy; } void Mine::setValue(int val) { value=http://www.mamicode.com/val;>
具体文件及见下载地址:http://download.csdn.net/detail/zhouyelihua/7604765
http://download.csdn.net/detail/zhouyelihua/7604765
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。