-
9 realize elevator control layer functions as follows: 1, first assume that no p...
实现9层电梯控制
功能如下:1,先假设没上楼之前,楼层运行看不到(没图形),可以当做随机看待。
2。当在某层按电梯开关后,在屏幕显示电梯停到该指定楼层的图形状态。
3。随后可以按想去的楼层,在屏幕显示电梯运动过程,,
4,可选择是否还执行本程序(坐电梯)-9 realize elevator control layer functions as follows: 1, first assume that no public housing, before running the floor can not see (no graphics) can be viewed as random. 2. When a layer switch by the elevator, the elevator stopped on the screen display to the graphics state designated floors. 3. Then may want to go to the floor, in the screen display elevator movement process, 4, can choose whether the implementation of this program (elevator)
- 2023-05-11 11:30:03下载
- 积分:1
-
Software easy68K use for embedded compiler (.Asm)
Software easy68K use for embedded compiler (.Asm)
- 2022-02-25 14:42:32下载
- 积分:1
-
51单片机单键多功能渐变程序 51单片机单键多功能渐变程序
51单片机单键多功能渐变程序 51单片机单键多功能渐变程序-51 MCS 51 MCS-touch multi-touch multi-function gradient program gradient program 51 one-touch multi-function gradient program microcontroller
- 2022-03-01 15:12:16下载
- 积分:1
-
实现记时和日期显示功能的c语言程序
实现计时和日期显示功能的c语言程序,和秒表功能,以及定时功能的实现,基于C语言汇编和单片机技术
- 2023-08-20 21:15:02下载
- 积分:1
-
16个按键的 程序, 具体按照扫描的,时间快
16个按键的 程序, 具体按照扫描的,时间快-16 key procedures, specifically in accordance with the scan, time speed
- 2022-07-11 11:55:39下载
- 积分:1
-
看雪软件安全http:www.pediy.com 上 翻译的opcode结构的文章 对学习反编译很有用处...
看雪软件安全http:www.pediy.com 上 翻译的opcode结构的文章 对学习反编译很有用处-See the snow on the translation of software security http:www.pediy.com the opcode structure of the article on learning useful decompile
- 2022-02-03 03:41:11下载
- 积分:1
-
VB编程实现图像的漂亮效果,欢迎分享,
VB编程实现图像的漂亮效果,欢迎分享,-VB Programming beautiful image effects, welcome to share
- 2022-05-26 03:56:42下载
- 积分:1
-
这是使用汇编语言编写的一个从键盘接受输入,并在屏幕上显示的程序。其中可以输出大小写字符...
这是使用汇编语言编写的一个从键盘接受输入,并在屏幕上显示的程序。其中可以输出大小写字符-This is the use of assembly language prepared to accept input from a keyboard and screen procedures. In which case characters can be output
- 2023-07-21 14:45:02下载
- 积分:1
-
Multi
多功能太阳能定时器程序(液晶),对产品开发有很好的参考价值。-Multi-function solar timer program (LCD), for product development has a very good reference value.
- 2022-07-03 13:20:51下载
- 积分:1
-
#include <iostream>
#include <stack>
#define MAX_SIZE...
非递归的快速排序算法-#include
#include
#define MAX_SIZE 11
using namespace std
typedef int elem
typedef std::stack Stack
int partition(elem*pData, int low, int high)
void swap(elem& a, elem& b)
void qsort(elem* pData, int low, int high)
int partition(elem*pData, int low, int high)
{
elem key = pData[low]
while(low < high)
{
while(low < high && pData[high] >= key)
high--
swap(pData[low], pData[high])
while(low < high && pData[low]
- 2022-05-08 16:41:43下载
- 积分:1