-
“咕咚“模拟系统
borlandc++开发的咕咚模拟系统,包含运动 社区 分享等许多功能(A C program based on borlandc++)
- 2020-06-22 11:40:01下载
- 积分: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
-
pdfView
PDF在线预览,实现PDF在线预览功能,多个PDF一起查看。(PDF online preview, to achieve PDF online preview function, multiple PDF view together.)
- 2017-06-12 15:03:03下载
- 积分:1
-
一个九宫问题的源码,a星算法,深度优先广度优先算法都有
一个九宫问题的源码,a星算法,深度优先广度优先算法都有-a JiuGongTu the source, a Star algorithm, depth-first algorithm has breadth priority
- 2022-01-25 15:24:17下载
- 积分:1
-
反演(第一章)
北京大学地球物理反演课程的一些资料,很有用,讲一些地球物理反演的理论和方法(Geophysical inversion)
- 2019-03-19 08:41:45下载
- 积分:1
-
chapter_6_triangles
说明: notes on triangle of junior level
- 2020-06-25 19:40:02下载
- 积分:1
-
程序目的: 输入一个任意大小的迷宫,用栈求出一条走出迷宫的路径,并 显示在屏幕上。 程序实现: 可以实现载入迷宫和保存迷宫,附带文件中有4个测试迷宫路径的 文件...
程序目的: 输入一个任意大小的迷宫,用栈求出一条走出迷宫的路径,并 显示在屏幕上。 程序实现: 可以实现载入迷宫和保存迷宫,附带文件中有4个测试迷宫路径的 文件test1~4.dd。请将这些文件拷贝到TC当前目录下,或者在载 入时写明完全路径。由于屏幕大小的限制,当用户自己输入迷宫 时一定要注意:迷宫大小是有限制的,不小于4*3,不大于30*20。 否则会出现错误信息。输入开始时全是墙,用上下左右键移动, 用Del键删除墙,形成通路,用Enter键添加墙。输入结束时可以 将迷宫保存下来,以dd为扩展名。输入完毕时用F9键来得到结果, 找到路径时,屏幕下方会出现Path found,否则出现Path not found。 程序经Turbo C 2.0编译调试成功。运行时不用添加任何运行库。 不可以在VC上编译。-procedures purpose : to bring in a maze of arbitrary size, with a stack get out of the maze of trails and on the screen. Program : can achieve and preserve the printed maze maze, the accompanying documents were four test maze of trails to document test1 4.dd. I would be grateful if those files are copied to the TC current directory, or in the state when fully contained path. Due to restrictions on the size of the screen when the user input labyrinth must pay attention to : the size of the maze is a restriction, not less than 4* 3, not more than 30* 20. Otherwise there will be a wrong message. At the beginning of the importation of a
- 2022-08-06 12:51:19下载
- 积分:1
-
tc graphical programming of the mouse and keyboard first important document
tc图形编程中的鼠标和键盘的重要头文件-tc graphical programming of the mouse and keyboard first important document
- 2022-01-21 21:50:57下载
- 积分:1
-
模电的Multisim仿真实例
模电的Multisim仿真实例,与书本同步的
模拟电子技术基础简明教程(第三版)(Mode power Multisim simulation example, the book synchronization with analog electronic technology based on Concise Guide (third edition))
- 2020-06-26 02:20:01下载
- 积分:1
-
PCMCIA方案
The PCMCIA Solution
PCMCIA System Architecture
- 2022-03-12 00:15:54下载
- 积分:1