-
汇编编译器
汇编编译器-Compilation of the compiler
- 2022-01-24 17:28:58下载
- 积分:1
-
液晶要带字库的!!
自己编的,正在用呢,保证对
液晶要带字库的!!
自己编的,正在用呢,保证对-??????
- 2022-05-17 08:03:09下载
- 积分:1
-
DSP2407A头文件,以应用于自己设计的DSP最小系统,证明有效
DSP2407A头文件,以应用于自己设计的DSP最小系统,证明有效-DSP 2407 header
- 2022-07-28 16:16:00下载
- 积分:1
-
汇编课程设计文本编辑器源码 很简单的功能很不错的
汇编课程设计文本编辑器源码 很简单的功能很不错的-Compilation of curriculum design, source code is very simple text editor features a very nice
- 2022-02-28 19:34:37下载
- 积分:1
-
图形显示:一个五角星,按一键,变一种颜色 代码
图形显示:一个五角星,按一键,变一种颜色 代码
-graphics : a five-pointed star, according to a key, a color code change
- 2023-05-16 06:00:02下载
- 积分:1
-
electronic bell curriculum design. Doc
电子钟课程设计.doc-electronic bell curriculum design. Doc
- 2022-07-07 22:36:45下载
- 积分:1
-
串口程序源码,C语言,需要的同志可以下载哈
串口程序源码,C语言,需要的同志可以下载哈-Serial program source code, C language, the need for comrades can download Kazakhstan
- 2022-02-05 01:40:35下载
- 积分:1
-
本题目的主要要求是要实现闹钟的功能内容:设计一个能够显示时分秒的数字时钟,时间显示为12小时制,除了显示分时秒外,并能实现上,下午。可以进行手动校时,定时(完成...
本题目的主要要求是要实现闹钟的功能内容:设计一个能够显示时分秒的数字时钟,时间显示为12小时制,除了显示分时秒外,并能实现上,下午。可以进行手动校时,定时(完成此题目时要有适当的设置,确定灯按钮,单,双灯作为报警显示),同时还应该能够清零。-the subject of the main demands is to achieve the alarm clock function : to design a display of accurate digital clock, the time displayed by the system for 12 hours, showing the time of seconds, and can achieve the afternoon. Can manually school, regular (completion of this topic have appropriate settings, to determine button lights alone, as the police showed two-lamp), but also should be able to reset.
- 2022-10-20 01:10:03下载
- 积分:1
-
this a simple Timer original code
this a simple Timer original code
- 2023-03-22 08:35:04下载
- 积分: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