-
此程为普通的I/O口驱动LCD,很有和用,希望对大家有帮助
此程为普通的I/O口驱动LCD,很有和用,希望对大家有帮助-This way for the ordinary I/O port driver LCD, useful and used, in the hope that everyone has to help
- 2022-08-02 12:09:36下载
- 积分:1
-
本应用为温度计的源程式,用C写的,不错哦
本应用为温度计的源程式,用C写的,不错哦-This application for thermometer source programs, written using C, yes Oh
- 2023-02-28 18:15:03下载
- 积分:1
-
三六豹游戏
三六豹游戏。该游戏分几个可选项,每个选项都有固定的赔率大小,玩家可进行押注买多买少。
- 2023-04-14 21:15:04下载
- 积分:1
-
虚拟的Win32 API的BSD Unix,在UNIX编译器直接调用Win32 API和# 39…
Virtual Win32 API For BSD UNIX, 可在UNIX下直接编译呼叫标准Win32 API之C/C++原始码, 单一原始码可跨平台, 可在Windows下使用Visual C++对于目标UNIX的程序除错 , 确定没问题后可直接移植至UNIX完全不用修改-Virtual Win32 API For BSD UNIX, in the UNIX compiler directly call Win32 API"s standard C/C source code. a single source for cross-platform, in Windows using Visual C goals for the UNIX debugging procedures, After determining no problem can be transplanted directly to UNIX entirely without changes
- 2023-06-27 07:35:03下载
- 积分:1
-
求一堆数里面的最大值
求一堆数里面的最大值-heap for the maximum number of inside! !
- 2023-05-31 17:35:03下载
- 积分:1
-
编的不好,请多多指教,32位的十六进制转换十进制并显示。
编的不好,请多多指教,32位的十六进制转换十进制并显示。-series of the poor, exhibitions, the 32 hexadecimal and decimal conversion shows.
- 2023-06-23 07:30:04下载
- 积分:1
-
这是液晶程序的源代码
这是液晶程序的源代码-This is a program"s source code
- 2022-12-26 22:35:02下载
- 积分:1
-
数码管显示交流稳压器,使用9454单片机编写,汇编言语
数码管显示交流稳压器,使用9454单片机编写,汇编言语-Digital display AC voltage stabilizer, the use of 9454 single-chip preparation, compilation of words
- 2023-07-10 08:10:03下载
- 积分:1
-
汇编课程设计 图形编辑器
汇编课程设计 图形编辑器-compilation curriculum design graphics editor
- 2023-02-07 22:55: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