-
shumoguihualun
数学建模,线性规划模型,优化问题案例,各种题型与案例(Mathematical modeling, linear programming model, optimization case, the various types of problems in case)
- 2010-08-16 10:30:30下载
- 积分:1
-
飞机大战面向对象
说明: 利用Python面向对象知识实现飞机大战游戏(Application of Aircraft Battle Game with Python)
- 2020-06-21 01:20:08下载
- 积分:1
-
下载我+全部游戏下载列表
说明: 包括各种热门游戏。其中有些已失效,可以随便看看,了解各种好玩的游戏,建议入正。(Including all kinds of popular games.)
- 2020-06-20 23:20:02下载
- 积分:1
-
单目标GOA算法
说明: 能够实现蝗虫优化算法,里面包含许多经典的单目标测试函数,使用时直接运行main函数即可,需要更改测试函数的的话自己在main里面修改(It can realize locust optimization algorithm, which contains many classic single objective test functions. When using, you can directly run the main function. If you need to change the test function, you can modify it in main)
- 2020-12-07 17:59:31下载
- 积分:1
-
Domino mail8.5
DOMINO邮件模板,版本8.5,需要的尽快下载-Domino mail8.5
- 2022-05-01 01:03:26下载
- 积分:1
-
SQL数据库图书管理系统(完整代码)
? 实现图书信息、类别、出版社等信息的管理;
? 实现读者信息、借阅证信息的管理;
? 实现图书的借阅、续借、归还管理;
? 实现超期罚款管理、收款管理;
? 创建触发器,分别实现借书和还书时自动更新图书信息的在册数量;(Realize the management of books information, categories, publishing houses and other information;
Realize the management of reader information and borrowing card information.
To realize the management of book borrowing, renewal and return;
Achieve the management of overdue fines and receipts;
Create triggers to automatically update the number of books in the book when borrowing and returning books, respectively.)
- 2019-06-06 21:04:09下载
- 积分:1
-
4psk
4psk系统,包括sinc滤波器的成型滤波部分,以及每一步的仿真结果图形(4psk communication system)
- 2017-07-05 09:57:50下载
- 积分:1
-
Visual C# 使用键盘控制窗体的移动
Visual C#使用键盘控制窗体的移动,创建窗体对象,设置窗体接收按键事件,定义一个标识窗体的变量,判断按键类型,判断后关闭本窗体。
private void Form1_Load(object sender, EventArgs e)
{
Frm_Main form1 = new Frm_Main();//创建窗体对象
form1.KeyPreview = true;//设置窗体接收按键事件
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
Point point = this.Location;//定义一个标识窗体的变量
switch (e.KeyData)//判断按键类型
{
case Keys.Up://当按键为上方向键时
point.Y -= 2;
break;
case Keys.Down://当按键为下方向键时
point.Y += 2;
break;
case Keys.Right://当按键为右方向键时
point.X += 2;
break;
case Keys.Left://当按键为左方向键时
point.X -= 2;
break;
case Keys.Escape://当按键为Esc键时
this.Close();//关闭本窗体
break;
default: break;
}
this.Location = point;
}
- 2022-03-13 23:48:13下载
- 积分:1
-
XDS100v3-Design-Kit-1.0-Setup
说明: 仿真器开发资料。TI新一代仿真器XDS100V3.(Simulator development data. TI new generation simulator XDS100V3.)
- 2019-03-18 19:34:40下载
- 积分:1
-
纯CSS3方块跳动加载动画特效
纯CSS3方块跳动加载动画特效是一款适用于网页动态加载样式代码。(Pure CSS3 box jump loading animation effect is a dynamic loading style code for web pages.)
- 2018-12-28 20:23:29下载
- 积分:1