-
3des
3DES is a encryption algorithm ,this algorithm has run successfully.
- 2012-05-24 16:09:30下载
- 积分:1
-
Visual C# LINQ转换为一对多字典
Visual C# 转换为一对多字典,构造泛型列表,使用LINQ查找用户代码小于3的列表,此时的query变量的类型是IEnumerable类型,使用ToLookup方法将query转换为一对多字典类型:
ILookup userLookup = query.ToLookup(itm => itm.UserCode);
label1.Text = "ILookup的结果是:
";
foreach (var user in userLookup)//遍历查询结果
{
label1.Text += user.Key;//显示主键
label1.Text += " ";
foreach (var user2 in user)//遍历所有值
{
label1.Text += user2.UserName + " , ";//显示键值
}
label1.Text += "
";
}
- 2023-05-18 03:20:03下载
- 积分:1
-
hnt
说明: 汉诺塔问题的另一种解法,方法非常灵活有效,运行效率高(HANOR of another solution, a very flexible and effective method, high efficiency operation)
- 2006-04-29 22:43:33下载
- 积分:1
-
radar_chirp
自己用编写的雷达线性调频信号产生器,信号幅度为-1~1,其中另外的一些参数可以根据需要改动(themselves with the preparation of the linear FM radar signal generator, the signal amplitude ~ 1-1, which some other parameters can be changed as needed)
- 2020-09-29 10:07:44下载
- 积分:1
-
C# 超强生成随机数 实例源码
C# 超强生成随机数 实例源码
- 2014-06-11下载
- 积分:1
-
account
设计一个名为Account类。这个类包含:
(1)一个名为id的int型数据域,表示账户的身份号(默认值为0)。
(2)一个名为balance的double型数据域,表示账户余额(默认值为0)。
(3)一个名为annualInterestRate的double型数据域,保存当前年利率(默认值为0)。
(4)一个无实参构造函数,创建一个默认账户。
(5)id、balance和annualInterestRate的访问器和更改器函数。
(6)一个名为getMonthlyInterestRate()的函数,返回月利率。
(7)一个名为withDraw的函数,从账户中支取指定金额。
(8)一个名为deposit的函数,向账户中存入指定金额。
画出类的UML图,实现类。编写一个测试程序,它创建一个Account对象,其ID为1122,账户余额为20000,年利率为4.5 。使用withDraw函数取出2500美元,使用deposit函数存入3000美元,然后输出账户余额、月利率和账户创建时间。(Design a class named Account. This class includes: (a) a named data type int id field that indicates the account identification number (default is 0). (2) a double-called balance of data fields, which means that the account balance (default is 0). (3) a double type named annualInterestRate of data fields, save the current interest rate (default is 0). (4) a no-argument constructor creates a default account. (5) id, balance and annualInterestRate access control and change control functions. (6) a named getMonthlyInterestRate () function returns a monthly rate. (7) a function named withDraw, drawn from the account specified amount. (8) a function called deposit to the account into a designated amount. Draw a UML class diagram, the implementation class. Write a test program that creates an Account object, its ID is 1122, the account balance is 20,000, an interest rate of 4.5 . Use withDraw function out $ 2,500, $ 3,000 deposit with deposit function, and then outputs the account balance, m)
- 2013-06-01 13:21:54下载
- 积分:1
-
ComputerSecurity
信息安全,包含多种加密算法的实现,例如凯撒、DES、RSA、SHA1等等,有图形界面。(Information security, contains a variety of implementations of the encryption algorithm, such as Caesar, DES, RSA, SHA1, etc., graphical interface.)
- 2013-03-14 22:22:05下载
- 积分:1
-
office 文档自动打印
office 文档自动打印
- 2014-05-30下载
- 积分:1
-
网络即时通讯程序源码(可传文件、聊天)
在本机运行的时候,请将QClient.cs 中的ip地址改成自己的ip, 即这里: private string ServerHost = "192.168.1.104"; //服务器主机 网络即时通讯程序,基本要求如下:1)用户之间的同步/异步的即时文字通讯;2)用户之间的文件传输功能;3)至少支持在局域网内实现基本文字通信功能,考虑基于互联网的网络通信功能。4)附加要求:A,支持音/视频功能;(这个未完全实现,视频接收方的每一步方法都要用到委托访问控件,已放弃治疗)B,用户之间的通信参考QQ的弹窗效果;C,发送文件前,应经过接收方的允许后才发送;D,消息到达提醒功能;(用户名闪烁)
- 2013-11-26下载
- 积分:1
-
短路电流计算程序(1)
在Matlab上进行电力系统分析的短路电流计算C 语言程序(Short circuit current calculation for power system analysis on Matlab, C language program.)
- 2018-04-11 09:51:52下载
- 积分:1