-
sjrsalizattonmatrix
分别编写一个程序实现三种基本排序运算, 1 编写一个程序实现直接插入排序过程,并输出 9,8,7,6,5,4,3,2,1,0 的(Write a program to realize three basic sort operations, 1 write a program to realize the direct insertion sorting process, and output 9 / 8 / 7 / 6 / 5 / 4 / 3 / 3 / 2 / 1 / 0.)
- 2018-09-04 04:59:06下载
- 积分:1
-
直接带入数据..可以求解理论总塔板数以及提馏和精馏段塔板数...
直接带入数据..可以求解理论总塔板数以及提馏和精馏段塔板数-directly into the data can be solved .. Theory total plate number and stripper and distillation of the plate numbers
- 2022-07-13 22:12:30下载
- 积分:1
-
OutPutExcel
datatable 内容进行Excel输出(Excel output datatable content)
- 2009-07-04 09:44:58下载
- 积分:1
-
Programación Orientada a Objetos
Object-oriented programming
- 2018-01-06 01:02:37下载
- 积分:1
-
Crackstiffness
中性轴法,计算转子轴上裂纹梁单元的惯性矩(Calculate the moments of inertia of the cross section of a cracked beam element based on the neutral axis method)
- 2020-12-27 15:29:02下载
- 积分:1
-
带声音的VB日程提醒、护眼提醒、关机提醒程序
一款VB开发的提醒软件,在界面设计上,制作成了圆形的不规则窗体,并且支持启动窗体动画和鼠标的交互响应,鼠标放在主窗口上,会显示出二级菜单;功能方面支持关机提示、护眼提示、日程提示、软件盘提示与闪盘提示、开机时长提示等,支持开机动画 ,在任务栏添加图标、支持窗体透明度适时设置、支持操作音等功能。
想了解VB制作不规则窗体的朋友,这个源码确实不错。
- 2022-09-08 10:35:02下载
- 积分:1
-
提供使用扩充内存EMS完成大数组的类
提供使用扩充内存EMS完成大数组的类-for use EMS memory expansion to be completed array of categories
- 2022-03-20 07:22:24下载
- 积分:1
-
竹子价值的设计开发_胡敏君
竹子的功能价值以及设计开发案例分析,充分展示竹子的特性(The value and design development of bamboo)
- 2017-08-11 16:27:31下载
- 积分:1
-
Gill Sans MT Condensed
Gill sans mt condensed
- 2019-06-17 01:53:02下载
- 积分: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