-
清华大学出版社 李存葆 c++程序设计 光盘代码
清华大学出版社 李存葆 c++程序设计 光盘代码-Li Cunbao c programming code CD
- 2022-05-14 16:15:24下载
- 积分:1
-
Wince5.0+S3C2440扩展总线挂接CPLD的驱动
Wince5.0+S3C2440扩展总线挂接CPLD的驱动-Wince5.0+ S3C2440 expansion bus drivers hooking CPLD
- 2023-04-20 23:35:02下载
- 积分:1
-
文档搜索器以搜索可支持的硬盘文档内容为主,附加搜索文件名的功能,搜索结果按照文件所匹配的关键词的数目进行由多到少的排序,方便用户索引或打开文件....
文档搜索器以搜索可支持的硬盘文档内容为主,附加搜索文件名的功能,搜索结果按照文件所匹配的关键词的数目进行由多到少的排序,方便用户索引或打开文件.-Document search engine to search for documents to support content-based hard drive, file name Additional search features, search results in accordance with the documents that match the number of words from many of the smaller sort, user-friendly index or open the file.
- 2023-08-23 06:35:03下载
- 积分:1
-
模糊模型的c++源代码,注释完整,清晰易懂
模糊模型的c++源代码,注释完整,清晰易懂-Fuzzy Programming
- 2022-03-21 17:31:02下载
- 积分:1
-
Cell components of this source is from the database delphi how to check the numb...
此源码是Cell组件delphi中如何从数据库取数和自定义函数的代码示例-Cell components of this source is from the database delphi how to check the number and self-defined function code sample
- 2022-07-15 15:38:07下载
- 积分:1
-
CAIMAN method是一种通过挖掘数据的帽子矩阵的对角信息来实现对数据分组的方法。...
CAIMAN method是一种通过挖掘数据的帽子矩阵的对角信息来实现对数据分组的方法。-The CAIMAN method (Classification And Influence Matrix ANalysis) is a classification method exploiting the properties of the diagonal terms of the influence matrix, also called leverages.
- 2022-02-18 15:52:50下载
- 积分:1
-
实例05
实例05-传输文件-examples of 05-to transfer files
- 2022-05-05 19:13:56下载
- 积分:1
-
shortest distance
求两点间最近路径,以地图为例。查找两地间最短路径。-shortest distance
- 2022-06-13 17:56:20下载
- 积分:1
-
QT编写的C++贪吃蛇小游戏
游戏通过按键控制
部分代码:
#include "gamewidget.h"
#define ROW 13
#define COL 16
#define UP 0
#define DOWN 1
#define LEFT 2
#define RIGHT 3
GameWidget::GameWidget(QWidget *parent)
:QWidget(parent)
{
this->setAutoFillBackground(true);//覆盖
this->resize(480,270);
this->setWindowIcon(QIcon("img/icon.jpg"));
this->setWindowTitle("贪吃蛇");
QPalette palette;
palette.setBrush(QPalette::Background,QBrush((QPixmap)"img/bjt.png"));
this->setPalette(palette);
//按扭区
leftbtn=new QPushButton(this);
leftbtn->setIcon((QIcon)"img/zuo.png");
leftbtn->setIconSize(QSize(40,40));
leftbtn->setGeometry(QRect(340,180,40,40));
leftbtn->setFlat(true);
rightbtn=new QPushButton(this);
rightbtn->setIcon((QIcon)"img/you.png");
rightbtn->setIconSize(QSize(40,40));
rightbtn->setGeometry(QRect(430,180,40,40));
rightbtn->setFlat(true
- 2022-03-21 19:09:00下载
- 积分:1
-
VIsualC++编程对话框的应用
本工程在VisualStudio2010平台验证通过,主要完成对话框的应用是一个对话框的综合应用程序,包括模态和非模态对话的设计,对话框控件消息的处理,属性对话框的设计和消息响应,文件对话框的实例,颜色对话框的实例,查找和替换对话框的实例。
- 2022-02-06 02:37:17下载
- 积分:1