-
confused version of the classic operating procedures. Downloading is the prepara...
经典的摸版操作程序.下载的是用C++编写的原代码-confused version of the classic operating procedures. Downloading is the preparation of the original C code
- 2022-01-25 14:27:01下载
- 积分:1
-
This package is excellent Liuzhou PXA270 development board with vga output board...
这个包是优龙pxa270开发板带vga输出的那种板子带的boot loader,可以启动wince, 全部源码,用ads1.2编译-This package is excellent Liuzhou PXA270 development board with vga output board with the kind of boot loader, can boot wince, all the source code, compiled with ads1.2
- 2022-07-18 02:25:59下载
- 积分:1
-
双击可执行程序RQSZ.exe,在出现的提示信息中输入大写字母“D”,可
显示系统当前日期;输入大写字母“T”,可显示系统当前时间;输入大写字母
“Q”...
双击可执行程序RQSZ.exe,在出现的提示信息中输入大写字母“D”,可
显示系统当前日期;输入大写字母“T”,可显示系统当前时间;输入大写字母
“Q”,可结束程序。-Double-click the executable program RQSZ.exe, a message that appears, type the capital letters
- 2022-12-31 21:35:03下载
- 积分:1
-
Windows程序设计中的所有示例代码
Windows程序设计中的所有示例代码-Windows program design all the sample code
- 2022-03-12 09:46:15下载
- 积分:1
-
An example of using URBI via LibURBI in C
An example of using URBI via LibURBI in C-An example of using URBI via LibURBI in C++
- 2022-02-15 01:49:10下载
- 积分:1
-
该程序用贪心算法来求解最小生成树问题 采用贪婪准则:每次选择边权值最小边。如果该边加入后不构成环,则加入。...
该程序用贪心算法来求解最小生成树问题 采用贪婪准则:每次选择边权值最小边。如果该边加入后不构成环,则加入。-procedures with the greedy algorithm to solve the problem using the minimum spanning tree greedy guidelines : each side the right to choose the minimum value side. If the edge after the entry does not constitute a part, while accession.
- 2022-06-11 11:33:35下载
- 积分:1
-
实验箱的上位机程序,由学生根据说明自行完成实验程序
实验箱的上位机程序,由学生根据说明自行完成实验程序-PC box experimental procedures, by the students to achieve in accordance with the experimental procedures that
- 2022-04-13 01:09:39下载
- 积分:1
-
编辑框源码,实用性很高
编辑框源码,实用性很高-edit box source, high practicality
- 2022-03-25 10:36:33下载
- 积分:1
-
OCR 源代码。
这 OCR 的源代码。代码开发的 C#、 细化和认可的标志
- 2022-01-26 06:51:26下载
- 积分: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