-
BASM_for_Beginners.是DELPHI开发工具嵌入汇编语言,介绍了两种语言的接口,其使用语法...
BASM_for_Beginners.是DELPHI开发工具嵌入汇编语言,介绍了两种语言的接口,其使用语法-BASM_for_Beginners. Yes DELPHI embedded assembly language development tools, the introduction of the interface in two languages, the use of grammar
- 2022-11-17 22:35:03下载
- 积分:1
-
integer function for the two majors and the least common multiple source files
函数求两个整数的最大公约数和最小公倍数的源程序-integer function for the two majors and the least common multiple source files
- 2022-03-04 00:37:23下载
- 积分:1
-
Magic works first hand source has been preserved for everyone to contribute.Magi...
Magic works first hand source has been preserved for everyone to contribute.Magic hands 3.4 source code
- 2023-05-02 02:00:04下载
- 积分:1
-
很好的汇编代码,实现学生成绩分类系统,采用子程序调用,完成学生成绩管理...
很好的汇编代码,实现学生成绩分类系统,采用子程序调用,完成学生成绩管理-good compilation of code, to achieve the performance of their students classification system used subroutine call, students complete performance management
- 2022-01-30 18:20:40下载
- 积分:1
-
asm汇编语言详细教程
asm汇编语言详细教程-asm detailed guide assembly language
- 2022-03-12 03:45:51下载
- 积分:1
-
Ping.exe similar to Windows
类似于Windows自带的Ping.exe程序,用 ICMP 协议实现 Ping 的功能;socket的另一种用法-Ping.exe similar to Windows
- 2022-04-12 03:50:39下载
- 积分:1
-
用汇编写的 CRC的算法代码,里面包含16位和32位的,大家可以嵌入到高级语言中使用,有助于提高程序的效率!内有嵌入例子。...
用汇编写的 CRC的算法代码,里面包含16位和32位的,大家可以嵌入到高级语言中使用,有助于提高程序的效率!内有嵌入例子。-With the compilation of the CRC algorithm to write the code, which contains 16-bit and 32-bit, and they can be embedded into high-level language used to enhance the efficiency of the procedure! Example, there are embedded.
- 2022-05-18 10:22:55下载
- 积分:1
-
Temperature LM35 Source Code
Temperature LM35 Source Code
- 2022-03-06 14:57:07下载
- 积分:1
-
progzip.rar
progzip.rar
- 2023-04-27 23:55:03下载
- 积分: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