-
实现CAN总线的接收,发送,故障处理,处理器采用的是STC89C58RD,是中央空调控制系统的下位机程序的一部分....
实现CAN总线的接收,发送,故障处理,处理器采用的是STC89C58RD,是中央空调控制系统的下位机程序的一部分.-CAN Bus receive, send, fault handling, the processor is STC89C58RD. central air-conditioning control system of the next crew part of that process.
- 2022-07-17 06:54:13下载
- 积分:1
-
汇编语言实现的通讯录程序,拥有增加、删除、修改等功能。通讯录保存在记事本中,单个单位有姓名和电话号码组成。...
汇编语言实现的通讯录程序,拥有增加、删除、修改等功能。通讯录保存在记事本中,单个单位有姓名和电话号码组成。-Assembly language implementation of the address book program, has to add, delete, modify other functions. Contacts saved in Notepad, a single unit composed of the name and phone number.
- 2022-08-09 18:14:32下载
- 积分:1
-
这是一个Led条屏的文字流水汇编程序源码,笔者早年的所写,流水速度非常快,是该类程序中的经典之作。对做条屏的朋友是个很好的参考。...
这是一个Led条屏的文字流水汇编程序源码,笔者早年的所写,流水速度非常快,是该类程序中的经典之作。对做条屏的朋友是个很好的参考。-This is a Led screen text article assembler source water, the author writes of his early years, very fast flowing water is of such proceedings classic. Article on screen make friends is a good reference.
- 2023-03-17 21:40:04下载
- 积分:1
-
输入三个整数x,y,z,请把这三个数由小到大输出。 1.程序分析:我们想办法把最小的数放到x上,先将x与y进行比较,如果x>y则将x与y的值进行交换,然后...
输入三个整数x,y,z,请把这三个数由小到大输出。 1.程序分析:我们想办法把最小的数放到x上,先将x与y进行比较,如果x>y则将x与y的值进行交换,然后再用x与z进行比较,如果x>z则将x与z的值进行交换,这样能使x最小。-Enter the three integers x, y, z, please these three the number of small to large output. 1. Program analysis: We think of a way to put x number of the smallest, the first comparison of x and y, if x> y will be the value of x and y exchange and then to compare x and z, if x > z will be x and z values of the exchange, which will enable x minimum.
- 2022-08-11 02:17:41下载
- 积分:1
-
masm611.zip good use assembler ah
masm611.zip 很好用的汇编程序呀-masm611.zip good use assembler ah
- 2022-09-10 08:15:03下载
- 积分:1
-
DAC0832的示例程序,希望对大家有帮战哦!
DAC0832的示例程序,希望对大家有帮战哦!-Examples DAC0832 procedures, in the hope that everyone has to help fight Oh!
- 2022-01-22 03:36:30下载
- 积分:1
-
hello.c program sample
hello.c program sample
- 2022-06-13 16:52:17下载
- 积分:1
-
这 是 一 篇 基 于 C 语 言 的 单 片 机 电 子 时 钟 的 程 序
这 是 一 篇 基 于 C 语 言 的 单 片 机 电 子 时 钟 的 程 序-This is a C language-based single-chip electronic clock procedures
- 2022-09-14 15:10:03下载
- 积分:1
-
Do you want to know which day you are born, this is WIN32 made the calculation o...
你想知道你是哪天生的,这个是WIN32编的计算你的出生有多少天了-Do you want to know which day you are born, this is WIN32 made the calculation of your birth how many days the
- 2022-03-05 20:19:57下载
- 积分: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