-
C
C-编译器的设计文档与源代码.-C-Compiler design documents and source code.
- 2022-07-19 20:50:55下载
- 积分:1
-
win32api
win32api-c
- 2023-07-20 00:05:04下载
- 积分:1
-
Principles of Computer Organization course design, simulation, implementation ci...
计算机组成原理课程设计,仿真实现cisc指令系统的设计。实现乘法运算。代码。-Principles of Computer Organization course design, simulation, implementation cisc instruction design. To achieve multiplication. Code.
- 2022-07-14 14:27:27下载
- 积分:1
-
I used to write a SOCKS5 proxy server, containing source, the current version 0....
我用VC6写的一个SOCKS5代理服务器,内含源码,目前版本0.0....01,只实现了Connect模式而且还有问题,Bind和UDP未实现.全API,使用了WinSock2中的完成端口模型。长期目标是完全实现三种模式,作成NT系统服务(为了调试协议,现在采用的控制台模式).-I used to write a SOCKS5 proxy server, containing source, the current version 0.0 .... 01, only achieved Connect mode but also, Bind and UDP unrealized. All API, the use of the completed WinSock2 port model. Long-term goal is to achieve three models, make NT system services (for debugging agreement, the console mode).
- 2022-03-01 09:24:29下载
- 积分:1
-
Windows核心编程(第五版)随书源代码,需要的可参考。
Windows核心编程(第五版)随书源代码,需要的可参考。-the code of Windows Kernel Program.
- 2022-04-08 22:24:26下载
- 积分:1
-
一个多项式相加的C程序,实现两个升幂排列的多项式的加法
一个多项式相加的C程序,实现两个升幂排列的多项式的加法-Addition of a polynomial C procedures, or two power with a polynomial Adder
- 2022-03-17 05:30:06下载
- 积分:1
-
一些C++源码,相信对大家很有帮助,特别是对于初学C++的新手来说更是如此。...
一些C++源码,相信对大家很有帮助,特别是对于初学C++的新手来说更是如此。-Some C++ Source Code,it s useful to the beginner of C++ language.
- 2022-01-25 16:07:34下载
- 积分:1
-
古典平面设计,实现了扩展总线的功能,双向
经典图形设计,实现总线IO扩张功能,双向输入输出。-Classical graphic design, to achieve the expansion bus IO functions, bi-directional input and output.
- 2022-01-26 06:52:49下载
- 积分:1
-
软件信号发生器
software signal generator
- 2022-09-21 08:20:03下载
- 积分: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