-
CRC的8位校验,使用汇编写的程序.可以用来做通信数据的校验
CRC的8位校验,使用汇编写的程序.可以用来做通信数据的校验-CRC checksum of eight, was compiled using the procedure. Can be used for the calibration data communications
- 2022-04-14 20:25:35下载
- 积分: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
-
MSP430C_p410例程如要更多资料请联系我.
MSP430C_p410例程如要更多资料请联系我.-MSP430C_p410 routines to more information please contact me.
- 2022-03-06 10:30:34下载
- 积分:1
-
vb 分形树
Dim xs As Integer
Dim ys As Integer
Dim alph As Single
Dim lng As Single
Dim m As Integer
Const PI As Single = 3.14159265
Private Function tree(x As Integer, y As Integer, angle As Single, length As Single, n As Integer)
Dim x0 As Integer
Dim y0 As Integer
Dim alpha As Single
Dim beita As Single
Dim leng As Single
BackColor = vbWhite
If n > 0 Then
x0 = x + Cos(angle) * length
y0 = y - Sin(angle) * length
picture1.Line (x, y)-(x0, y0), vbbrake
alpha = angle - PI / 8
beita = angle + PI / 8
leng = 2 * length / 3
Call tree(x0, y0, alpha, leng, n - 1)
&nbs
- 2022-01-24 19:06:52下载
- 积分:1
-
This is my class completed the compilation of a language other than simple cours...
这是本人在课上完成的,汇编语言不是门简单的课程在我看来,还得努力.-This is my class completed the compilation of a language other than simple courses doors, in my view, have to strive.
- 2022-05-07 20:45:49下载
- 积分:1
-
lcd1602与温度传感器18b20的综合应用
lcd1602与温度传感器18b20的综合应用
-lcd1602 with the temperature sensor integrated application 18b20
- 2022-06-19 08:28:22下载
- 积分:1
-
单片机控制的乒乓游戏的全部程序,做课程设计和有用的,。。。。。。。。。。。谢谢大家下载...
单片机控制的乒乓游戏的全部程序,做课程设计和有用的,。。。。。。。。。。。谢谢大家下载-SCM ping-pong game of all procedures, so the curriculum design and useful. . . . . . . . . . . Thank you for downloading
- 2022-07-16 20:26:08下载
- 积分:1
-
failed to translate
用汇编编程,带字库的12864的点阵、图形、汉字显示-failed to translate
- 2022-05-13 00:31:29下载
- 积分:1
-
一个很详细的电话拨号程序,利用HT9200A发送双音频信号
一个很详细的电话拨号程序,利用HT9200A发送双音频信号-A very detailed telephone dial-up procedures, the use of dual-audio signals sent HT9200A
- 2023-01-12 19:40:04下载
- 积分:1
-
派生类对象的复制与赋值
-------------------
执行C的拷贝构造函数
执行C的赋值函数
c1.x=1,c1.y=2
c2.x=1,c2.y=200
c3.x=10,c3.y=200
-------------------
执行D的拷贝构造函数
执行D的赋值函数
e1
- 2022-08-21 14:26:04下载
- 积分:1