-
一些编写jsp程序的资料,适于初学者,希望对初学者有用。
一些编写jsp程序的资料,适于初学者,希望对初学者有用。-Jsp some preparation procedure, suitable for beginners, and they hope to be useful for beginners.
- 2022-02-06 14:38:03下载
- 积分:1
-
应用边界信息与基于mumford
应用边界信息与基于mumford-shah泛函的先验形状的图像分割-Application of boundary information and based on the mumford-shah functional for image segmentation a priori shape
- 2022-01-21 03:40:24下载
- 积分:1
-
一个Delphi会员管理系统
一个Delphi会员管理系统,具体来说是Delphi会员消费管理,记录各个会员的消费情况,实现会员资料的录入、修改、查询,数据库基于DB2,分为多管理员帐户登录,登录后有不同的权限。
- 2022-03-02 22:41:58下载
- 积分:1
-
英文文献,主要内容为G.729标准,语音信号的一种传输协议。
英文文献,主要内容为G.729标准,语音信号的一种传输协议。-English literature, mainly for the G.729 standard voice signal of a transport protocol.
- 2022-12-29 15:40:03下载
- 积分:1
-
电脑鼠走迷宫算法 包含迷宫搜索和冲刺函数
电脑鼠走迷宫算法 包含迷宫搜索和冲刺函数-Computer Mouse Maze algorithm is a function that contains a maze search and sprint
- 2023-03-18 01:35:05下载
- 积分:1
-
一个转来的小车运动源程序
一个转来的小车运动源程序 -Transferred to a source of car movement
- 2022-03-19 02:52:19下载
- 积分:1
-
这是一个字的动画,它的字是动的,给人的感觉是字不是字拉,而是一个个的有生命体...
这是一个字的动画,它的字是动的,给人的感觉是字不是字拉,而是一个个的有生命体-This is a character animation, the characters it is moving and gives the impression that the word is not the words, but out of a life-
- 2023-04-22 04:35:03下载
- 积分:1
-
k means clustering c
k
k means clustering
k-均值聚类算法c语言版-k means clustering c
k-均值聚类算法c语言版
- 2022-11-05 07:30:03下载
- 积分:1
-
很好玩很不错的类似WINDOWS的画板的一个VB语言源程序。推荐大家使用!...
很好玩很不错的类似WINDOWS的画板的一个VB语言源程序。推荐大家使用!-is a lot of fun quite similar WINDOWS slate of a VB language source. Suggest we use!
- 2023-07-29 14:35:05下载
- 积分:1
-
C#使用LINQ筛选动态数组中是string类型的元素
C#创建动态数组,筛选指定类型的元素,使用LINQ筛选动态数组中是string类型的元素。核心代码如下:
ArrayList arrList = new ArrayList(); //创建动态数组
arrList.Add(1);//添加动态数组元素
arrList.Add(2);
arrList.Add("A");
arrList.Add(3);
arrList.Add("b");
//使用LINQ筛选动态数组中是string类型的元素
var query = from item in arrList.OfType()
select item;
label1.Text = "是字符串类型的有:";//显示string类型的元素
foreach (var item in query)
{
label1.Text += item + " , ";
}
- 2022-01-24 17:23:38下载
- 积分:1