-
是有线系统的接收部分,是汇编语言的,有用的请下载。
是有线系统的接收部分,是汇编语言的,有用的请下载。-Cable system is to receive part of the assembly language and useful download.
- 2022-08-13 02:01:57下载
- 积分:1
-
Count 24 points " as a mental poker game, a game content license from the Ki...
算24点”作为一种扑克牌智力游戏,游戏内容为从一副牌中抽去大小王2张,任意抽取4张牌(称牌组),用加、减、乘、除(可加括号)把牌面上的数算成24,每张牌必须用一次且只能用一次。我们可以人工计算,当然也可以用计算机来处理。本程序主要是借助计算机利用设计好的算法来计算24点问题。
该24点游戏程序内容主要包括界面显示,自动运算24点以及手动计算24点三部分,采用模块化开发方法,并汇编语言编写程序代码。-Count 24 points " as a mental poker game, a game content license from the King of removing the size 2, 4 samples of arbitrary license (a license that group), with add, subtract, multiply, divide (which can be bracketed ) to the surface of the card count as 24, each card must be used once and only once. We can manually, of course, can also be used to deal with the computer. This procedure is the use of the use of computer algorithms designed to calculate the 24 points. The 24-point games, including the contents of the main screen, automatic operation and manual calculation of 24 points, 24 points, three-part, modular development methodology, and assembly language programming code.
- 2022-09-03 01:05:03下载
- 积分:1
-
两个数相乘的汇编源码
微机原理课程设计
差不多就是学汇编...
两个数相乘的汇编源码
微机原理课程设计
差不多就是学汇编-Multiplied by the number two source of the compilation of curriculum design principles of computer science is almost a compilation
- 2022-03-19 07:50:38下载
- 积分:1
-
sheep
狼羊白菜问题农夫带着狼、羊、白菜从河的左岸到河的右岸,农夫每次只能带一样东西多河,而且,没有农夫看管,狼会吃羊,羊会吃白菜。
提示:利用图论解决问题。(用农夫、狼、羊、白菜及其在左岸还是右岸等表示图中的顶点)-sheep
- 2022-03-04 05:30:26下载
- 积分:1
-
PIC 外部中断 控制程序
此电话用于工作面沿线,与控制台配接,具有沿线的报
警、通话、闭锁等功能。型号 1:开关为旋钮,可以远启远停破碎机、转载机、前部运输机、
后部运输机,对前部运输机或后部运输机进行锁定。型号 2:开关为按钮,与控制台配接可
以闭锁前部运输机或后部运输机。利用PIC16f628A单片机实现控制程序
- 2022-01-31 16:13:03下载
- 积分:1
-
用单片机制作的高精度计数器,验证通过,适用于计数场合。...
用单片机制作的高精度计数器,验证通过,适用于计数场合。-Produced using high-precision single-chip counters, authentication is passed, apply to count occasions.
- 2022-11-01 23:40:03下载
- 积分:1
-
微机原理与接口技术课程设计,步进电机综合控制实验,设计用PC机对四相步进电机,方向,步数的控制系统,并编写汇编程序实现相应功能。...
微机原理与接口技术课程设计,步进电机综合控制实验,设计用PC机对四相步进电机,方向,步数的控制系统,并编写汇编程序实现相应功能。
-Microcomputer Principle and Interface Technology curriculum design, stepper motor control experiments, designed to PC-to four-phase stepper motor, direction, step control system and the preparation of the compilation process to achieve the corresponding functionality.
- 2022-08-09 00:47:59下载
- 积分:1
-
lottery program ... may random selection. Packet licensing. And computer random...
彩票计划。。。可以随机选择。数据包许可。计算机随机选择
- 2022-05-21 21:19:17下载
- 积分:1
-
s3c44b0初始化的引导程序,包括系统初始化,定义堆栈,进入主程序。...
s3c44b0初始化的引导程序,包括系统初始化,定义堆栈,进入主程序。-S3C44B0 guidance initialization procedures, including system initialization, the definition of the stack into the main program.
- 2022-03-13 10:51:01下载
- 积分:1
-
Python对文件IO操作
filePath="c:/test/tt.txt"
#从文件中读取信息
f=open(filePath, "r")#运用读的方式打开文件,
for line in f: #每次读取文件的一行内容
print(line)
f.close()
#向文件中写入信息
f=open(filePath, "a") #这里有两种方式:第一种是以w的形式,它写入时将会清空以前的数据然后再写入数据,第二种是以a的形式,它以追加的形式写入数据
f.write("我开始向文件中写入信息
")
f.writelines("我已经向文件写入了信息")
f.close()
- 2022-03-02 22:46:33下载
- 积分:1