-
这是一个XML记数器,可用做网页设计中计数器无需解压密码
这是一个XML记数器,可用做网页设计中计数器无需解压密码-This is an XML Register and can be used for web design counter without extracting passwords
- 2023-08-31 01:40:03下载
- 积分:1
-
C语言100
C语言、C++ 100范例,很好的学习资料!(The sample code of the C language, please refer to it~)
- 2019-03-28 17:36:29下载
- 积分:1
-
uCOS-II_sample
说明: STM32L1系列+ucosii系统demo开发,(STM32L151,ucosii,demo)
- 2020-07-29 17:06:18下载
- 积分:1
-
VC-MFC中使用工具栏控件详解
vc中关于mfc的应用,其中主要关于工具栏的,工具栏中添加图标文字和响应消息(The application of MFC in VC, which is mainly on the toolbar, adding icon text and response messages in the toolbar)
- 2018-01-26 01:44:13下载
- 积分:1
-
project-3-master
说明: input source code of your wish hghggjr
- 2019-02-07 14:05:10下载
- 积分:1
-
自动挖宝熔炼工具
多少啊实打实的阿萨德阿萨德阿萨德阿萨阿萨(auxiliary; assistant; assist; supplementary; subsidiary
welcome; greet; favourably [well] receive; aloha; ave interj)
- 2018-05-07 20:16:29下载
- 积分:1
-
各种常见的算法,用C写
各种常见的算法,用C写-various common algorithms, written in C
- 2022-01-25 16:32:46下载
- 积分:1
-
图微处理机的喇叭驱动程序
Horn Driver Program for PIC micro processor
- 2022-07-05 04:46:18下载
- 积分:1
-
TLC2543介绍中国,用汇编操作,TLC2543是TI SW…
TLC2543的中文简介,附有汇编操作,TLC2543是德州仪器公司生产的12位开关电容型逐次逼近模数转换器,它具有三个控制输入端,采用简单的3线SPI串行接口可方便地与微机进行连接,是12位数据采集系统的最佳选择器件之一。本文介绍了该芯片的功能、时序,并给出了8051单片机的接口电路。-TLC2543 briefed the Chinese, with the compilation operation, TLC2543 is by TI Switched-Capacitor 12-successive approximation ADC. it has three control input, a simple three-wire SPI serial interface can be easily connected with the computer, yes 12 Data Acquisition System devices to choose the best one. This paper introduces the chip functional, timing, and gives the 8051 interface circuit.
- 2022-08-03 17:02:33下载
- 积分:1
-
C# 泛型列表List用法示例
C# 泛型列表List用法示例,从给出的人员名单中,过滤人员名称中以"科"结束的序列,遍历查询结果。
private void Frm_Main_Load(object sender, EventArgs e)
{
List People = new List{//创建人员列表
new Person(1,"王*科"),
new Person(2,"王*科"),
new Person(3,"赵*东")};
var query = from p in People//过滤人员名称中以"科"结束的序列
where p.Name.EndsWith("科")
select new
{
人员ID = p.ID,
人员姓名 = p.Name
};
foreach (var item in query)//遍历查询结果
{
label1.Text += item + "
";
}
}
}
public class Person
{
public Person(int id, string name)
{
this.ID = id;
this.Name = name;
}
public int ID { get; set; }//人员ID
public string Name { get; set; }//人员姓名
}
- 2023-01-08 20:45:03下载
- 积分:1