-
调试通过了的基于89S51的LCD12864液晶显示
调试通过了的基于89S51的LCD12864液晶显示-Debugging based on the adoption of the 89S51 LCD LCD12864
- 2022-01-25 23:06:39下载
- 积分:1
-
ds18b20温度检测六位数码管显示温度
ds18b20温度检测六位数码管显示温度
- 2022-11-29 11:05:03下载
- 积分:1
-
除湿机的说明程序文件 已经生产几十W台 出口机形 分时操作
除湿机的说明程序文件 已经生产几十W台 出口机形 分时操作-dehumidifiers of the document production process dozens of W-exporting machine time-sharing operation
- 2022-06-18 05:13:50下载
- 积分:1
-
这是一个八月桂花香的程序,请大家指点,
这是一个八月桂花香的程序,请大家指点,-Baruguihuaxiang This is a process, we instruct them, thank you
- 2022-09-01 20:30:02下载
- 积分:1
-
编写程序,程序运行时使PC机成为一架可弹奏的“钢琴”。当按下数字键1~8,依次发出1,2,3,4,5,6,7,I八个音调。按CTRL+C则退出“钢琴”状态。...
编写程序,程序运行时使PC机成为一架可弹奏的“钢琴”。当按下数字键1~8,依次发出1,2,3,4,5,6,7,I八个音调。按CTRL+C则退出“钢琴”状态。-Write a program, the program is running to make PC-1 may play into the " piano." When pressing the number keys 1 to 8, followed by issue of 1,2,3,4,5,6,7, I eight tones. Press CTRL+ C has withdrawn from the " Piano" state.
- 2022-03-23 18:51:33下载
- 积分:1
-
简单的汇编语言虚拟机,可以编译并执得很简单的汇编语言程序...
简单的汇编语言虚拟机,可以编译并执得很简单的汇编语言程序-a simple virtual machine that can execute a simple assembly language
- 2022-01-25 22:21:01下载
- 积分:1
-
是一个用汇编语言编写的八路控制灯程序。其功能可以实现数字化的灯路控制。...
是一个用汇编语言编写的八路控制灯程序。其功能可以实现数字化的灯路控制。-is an assembler language of the Eighth Route Army to control lights procedures. Its functions can be achieved in digital signal path control.
- 2022-03-07 00:36:54下载
- 积分:1
-
This is a small calculator program, the realization of calculation functions, su...
这是一个计算器小程序,实现加减乘除功能,适合初学者参考及学习!-This is a small calculator program, the realization of calculation functions, suitable for beginners reference and learning!
- 2022-01-26 00:28:04下载
- 积分:1
-
石器jz Lua源代码
应用背景应用于石器时代服务端编译时加入,lua技术支持。含lns接口,能在编译完成的端中附加各种脚本。使得服务器竞争力加大。关键技术Applied to the Stone Age server-side compile time to join, lua technical support.Contain LNS interface, can complete end of additional at compile various scripts.Make the server more competitive.
- 2022-09-16 10:00:03下载
- 积分: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