-
Xilinx Virtex约束
xilinx virtex constraint
- 2022-03-14 21:19:18下载
- 积分:1
-
数据库开发 应用于库存管理信息系统适应于windows 程序设计
数据库开发 应用于库存管理信息系统适应于windows 程序设计-database develop, applicate to stock management information system ,subject to windows program design.
- 2023-02-19 04:00:03下载
- 积分:1
-
Fixed
Fixed-point math library, with dynamic size numbers (defined before build). Yet in development
- 2022-08-24 18:36:23下载
- 积分:1
-
C++ 编程练习代码
c++第五版,用于前四章的联系,使用于初学者,希望大家多多交流,获得更好的学习资源。其中包括了前四章的部分练习题答案,其中也有不完善或者不规范的请,大家批评指正。
- 2022-08-24 11:57:21下载
- 积分:1
-
本人两年前开发的移动给小灵通发短消息的程序,原理是用一个gsm modem接收从移动手机发过来的消息并解码成为文字信息,然后通过电信的web网站发送给小灵通,虽...
本人两年前开发的移动给小灵通发短消息的程序,原理是用一个gsm modem接收从移动手机发过来的消息并解码成为文字信息,然后通过电信的web网站发送给小灵通,虽然现在是废物,但是对学习gsm modem的操作大有好处,尤其是短消息编码解码,at命令操作等,该程序在实达的某款gsm modem上通过,也可以用一个老的nokia手机代替,但是我没有try过,自己简单调试一下即可-mobile PHS send text messages to the procedures, principle is a GSM modem reception from mobile phones made up of news and decoding as text messages, then Telecom web site sent to PHS, although now is the waste, but learning to operate the GSM modem large good, especially short news codec, at order operation, in the process of a particular Shida Public gsm adopted modem can also use an old nokia phones in place, but I did not try that I can simply about debugging
- 2022-09-30 03:50:03下载
- 积分:1
-
一个带键盘处理的电子钟小程序,用汇编语言写的
一个带键盘处理的电子钟小程序,用汇编语言写的-a keyboard with the electronic bell small program written in assembler language of
- 2022-10-21 04:35:03下载
- 积分:1
-
windows的多线程编程(界面线程和辅助线程),mfc相关1
windows的多线程编程(界面线程和辅助线程),mfc相关1-windows of the multi-threaded programming (interface thread and support thread), mfc-related 1
- 2022-09-14 14:15:03下载
- 积分:1
-
fillin small vc procedures used in the preparation of small programs can s
写留言的小程序
用vc++编写的小程序
可以-fillin small vc procedures used in the preparation of small programs can s
- 2022-04-26 21:14:10下载
- 积分:1
-
Win graphic images under category code
Win下图形图像类代码-Win graphic images under category code
- 2022-03-07 01:30:44下载
- 积分: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