-
一个用VC写的监控别人计算机的程序(65KB),
一个用VC写的监控别人计算机的程序(65KB),-Written by a VC with a computer program to monitor other people (65KB),
- 2022-01-29 04:01:26下载
- 积分:1
-
哈弗曼编码解码器通过哈弗曼树的建立,及其编码..
哈弗曼编码译码器 通过建立哈弗曼树,并对其进行编码译码 然后放入相应的TXT文件中-Havermann codecs through the establishment of Havermann tree, and its encoding and then decoding into the corresponding TXT file
- 2022-02-01 04:05:53下载
- 积分:1
-
编译原理编译器
用mfc写的关于tiny语法的编译器,支持词法分析,语法分析,还能够根据生成的语法树生成相应的中间代码,再根据中间代码生成对应的c语言代码和汇编代码,推荐使用vs2013打开
- 2023-04-07 15:45:12下载
- 积分:1
-
对USB进行编程,如何读取USB的接口,包括USB的一些驱动程序.
对USB进行编程,如何读取USB的接口,包括USB的一些驱动程序.-right to program, how to read the USB interface, including some USB driver.
- 2022-06-15 17:49:43下载
- 积分:1
-
直接修改注册表,改变环境变量,JDK安装的时候可以用这个
直接修改注册表,改变环境变量,JDK安装的时候可以用这个-Directly modify the registry to change the environment variables, JDK installation time can use this
- 2022-07-12 04:19:04下载
- 积分:1
-
基于单片机的计算器代码
基于单片机的计算器代码,可以加减乘除,小数点运算,不可累计运算,1602显示
- 2022-02-05 11:22:28下载
- 积分:1
-
用vc作的一个简单的电子表格,可以进行插入删除,添加行列等操作...
用vc作的一个简单的电子表格,可以进行插入删除,添加行列等操作-vc used for a simple electronic forms that can be inserted delete, add the ranks of such an operation
- 2022-04-12 16:33:13下载
- 积分:1
-
钟表
钟表-A demo shows how to program a clock.
- 2022-10-11 19:10:04下载
- 积分:1
-
foreign experts participating in the programming contest at the entries won. Ass...
此程序是国外高手参加世界编程大赛时的参赛作品,获一等奖。是汇编语言啊感觉很强-foreign experts participating in the programming contest at the entries won. Assembly language is a strong feeling ah
- 2022-02-22 10:05:09下载
- 积分: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