-
16F877单片机与PC机通讯的源程序,老外的,别错过.
16F877单片机与PC机通讯的源程序,老外的,别错过.-16F877 microcontroller and PC communication source, the generals, and others.
- 2023-04-07 23:45:04下载
- 积分:1
-
适用于内藏SED1335及其兼容控制器的320X240点阵字符
适用于内藏SED1335及其兼容控制器的320X240点阵字符-Applicable to embedded controller SED1335 compatible and SHARP-LM32019T 320X240 dot matrix characters
- 2022-05-23 09:29:40下载
- 积分:1
-
一个简单的linux下的客户端,有什么问题请多指教!
一个简单的linux下的客户端,有什么问题请多指教!-a simple linux under the client and what problems it should improve!
- 2023-06-03 07:25:03下载
- 积分:1
-
400k的源代码,大家参考参考,价值不一般的
400k的源代码,大家参考参考,价值不一般的-code in 400k,reference for everybody,a large of value!
- 2023-04-30 15:25:03下载
- 积分:1
-
基于ATMEGA16的车载电脑
car computer on ATmega16
- 2022-08-17 06:04:47下载
- 积分:1
-
当然他好通惠家园进45一任何牛肉汤教育局人格温热图5一45 王汝刚奖金额汤旺河安徽认为他易货交易精华...
当然他好通惠家园进45一任何牛肉汤教育局人格温热图5一45 王汝刚奖金额汤旺河安徽认为他易货交易精华-Of course, good通惠家园him into any one of 45 beef soup warm personality Fig.5 Education 1 45王汝刚prize money Tangwang River in Anhui consider him the essence of barter transactions
- 2022-12-11 04:40:03下载
- 积分:1
-
#include <iostream>
#include <stack>
#define MAX_SIZE...
非递归的快速排序算法-#include
#include
#define MAX_SIZE 11
using namespace std
typedef int elem
typedef std::stack Stack
int partition(elem*pData, int low, int high)
void swap(elem& a, elem& b)
void qsort(elem* pData, int low, int high)
int partition(elem*pData, int low, int high)
{
elem key = pData[low]
while(low < high)
{
while(low < high && pData[high] >= key)
high--
swap(pData[low], pData[high])
while(low < high && pData[low]
- 2022-05-08 16:41:43下载
- 积分:1
-
fpga的交通灯试验程序 可成功实现功能齐全
fpga的交通灯试验程序 可成功实现功能齐全-fpga testing procedures of the traffic lights are able to achieve a full-featured
- 2022-04-17 02:55:57下载
- 积分:1
-
汇编语言实现的四则运算。。。。。好好东西
汇编语言实现的四则运算。。。。。好好东西-Assembly language implementation of the four operations. . . . . Good stuff
- 2022-03-21 19:16:57下载
- 积分: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