-
This paper stresses the C language devil language interpretation systems, the de...
本文主要讲了C语言编写魔王语言解释系统,把魔王抽象的语言通过进队出队按照规则α 转换为 β1β2…βm 和θδ1δ2…δn 转换为 θδnθδn-1… θδ1θ 进行解释,最后解释译成我们能够看懂得语言。同时也讲述了在编写调试程序中一些需注意的问题,如调试程序的步骤。通过队的应用(出队入队)以及其他相关知识完成了这次课程设计。-This paper stresses the C language devil language interpretation systems, the devil of abstract language into the team through the Team in accordance with the rules is converted to α β1β2 ... βm and θδ1δ2 ... δn convert θδnθδn-1 ... θδ1θ explanation, and finally explained to us to look to understand the language. Also described in the preparation of commissioning procedures should pay attention to some issues, such as the debugger steps. Through the application of force (a team into the team), and other relevant knowledge to complete the curriculum design.
- 2022-10-15 03:55:04下载
- 积分:1
-
一个选择文件夹的汇编例子
一个选择文件夹的汇编例子-choose a folder compiled examples of
- 2022-12-09 04:45:03下载
- 积分:1
-
常见汇编语言程序设计原代码!我编的!希望大家给点意见
常见汇编语言程序设计原代码!我编的!希望大家给点意见-The useful demo of assembly language for program design.I write it and hope you give advice!
- 2022-02-24 20:11:18下载
- 积分:1
-
汇编语言超浓缩教程~~!适合初学者,让你尽快进入汇编的领域。...
汇编语言超浓缩教程~~!适合初学者,让你尽快进入汇编的领域。-assembly language-enrichment Guide ~ ~! For beginners, so as soon as you enter the field of compilation.
- 2022-05-15 02:45:42下载
- 积分:1
-
fet140_ta_03
fet140_ta_03
- 2022-02-21 23:58:01下载
- 积分:1
-
本程序是用于高速冲床上的送料控制程序,一个较为简单的89C51中断、定时计数器应用程序,已经调试成功,今天为大家出点力,也希望能在以后的学习中能得到大家的帮助。...
本程序是用于高速冲床上的送料控制程序,一个较为简单的89C51中断、定时计数器应用程序,已经调试成功,今天为大家出点力,也希望能在以后的学习中能得到大家的帮助。-This procedure is used for high-speed red bed feed control procedures, a relatively simple 89C51 interrupt, timer counter application has debugging success for the U.S. today, a little effort, but also hope to study in the future everyone will be help.
- 2022-12-29 17:45:08下载
- 积分:1
-
汇编程序实现:
程序功能:用深度优先搜索法解决八皇后问题并打印结果.
列数行数分别用1...
汇编程序实现:
程序功能:用深度优先搜索法解决八皇后问题并打印结果.
列数行数分别用1-8标记.所以八皇后的位置申请了9个
调试感慨:汇编调试实在麻烦,不像C中在任何地方加个printf就可以知道
哪错了.跳来跳去的,不知哪里死循环了,实在不好调试.
-Assembler to achieve: program features: Using depth-first search method to solve the eight queens problem and print the results. Out a few lines with 1-8 marks, respectively. Therefore, the position applied for 8 Queens 9 debugging feeling: it is troublesome to debug compilation , unlike C, plus a printf in any place can be known what is wrong. jumping around, and I do not know where the infinite loop, and it is not good debugging.
- 2022-07-23 13:48:34下载
- 积分:1
-
I CS3758DEMO prepared by the test procedure CS3758 mainly for 5.1 CH electronic...
本人编写的CS3758DEMO测试程序,CS3758主要用于5.1CH电子音量控制,兼容PT2258-I CS3758DEMO prepared by the test procedure CS3758 mainly for 5.1 CH electronic volume control, compatibility PT2258
- 2023-01-02 09:40:03下载
- 积分:1
-
ds1302和ds18b20和1602液晶显示,能显示日期,时间,和温度,并且附有详细的说明...
ds1302和ds18b20和1602液晶显示,能显示日期,时间,和温度,并且附有详细的说明-ds1302 and liquid crystal display ds18b20 and 1602 showing the date, time, and temperature, and accompanied by a detailed description of
- 2022-03-22 16:25:19下载
- 积分: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