-
对sps文件的包装类,对物探人员较有用,为标准C++设计,可在unix系统实现...
对sps文件的包装类,对物探人员较有用,为标准C++设计,可在unix系统实现-Sps files on the packaging category, geophysical staff of more useful, as the standard C design, unix system can realize
- 2022-01-21 03:24:42下载
- 积分:1
-
最新扫雷游戏,最新扫雷游戏,最新游戏
最新扫雷最新游戏最新扫雷最新游戏
- 2022-05-28 19:32:04下载
- 积分:1
-
约瑟夫环:编号为1,2,3,…,n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个正整数作为报数的上限值m,从第一个人开始按顺时针方向自...
约瑟夫环:编号为1,2,3,…,n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个正整数作为报数的上限值m,从第一个人开始按顺时针方向自1开始顺序报数,报到m时停止。报m的人出列,将他的密码作为新的m值,从他在顺时针方向上的下一人开始重新从1报数,如此下去,直到所有人全部出列为止。编程打印出列顺序。-Josephus : No. 1, 2, 3, ..., n n clockwise direction by individuals sitting around a circle, each holding a password (positive integers). An optional started as a positive integer reported limits on the number of m, from the first individuals to embark on the clockwise direction since the beginning of a sequence number off, the report m stop. M reported out of the list of his password as a new value m, from a clockwise direction in the next one started from a newspaper a few, like that, until the total of all listed so far. Programming print out the order.
- 2022-10-30 01:40:03下载
- 积分:1
-
关于BIOS使用的经典C代码
关于BIOS使用的经典C代码-BIOS used on the classic C code
- 2022-03-22 09:10:47下载
- 积分: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
-
学习java的小程序!很有用的,只要仔细阅读就能学到好多
学习java的小程序!很有用的,只要仔细阅读就能学到好多-study java
- 2022-09-08 00:30:03下载
- 积分:1
-
学生信息管理程序清单
功能要求:根据用户输入的学生序号,输出该学生的全部成绩,总分、平均分;
显示所有学生的信息;
显示有不及格课程的学生信息...
学生信息管理程序清单
功能要求:根据用户输入的学生序号,输出该学生的全部成绩,总分、平均分;
显示所有学生的信息;
显示有不及格课程的学生信息。-Student Information Management program list functional requirements: number of students based on user input, the output of all the student achievement total score, with an average points display the information of all students show that students do not pass the information.
- 2022-03-31 06:09:01下载
- 积分:1
-
数字信号处理课程的有关实验,分为两部分,这是第一部分
数字信号处理课程的有关实验,分为两部分,这是第一部分-Digital signal processing courses offered by the experiments, divided into two parts, this is the first part of
- 2023-09-04 16:00:04下载
- 积分:1
-
将C语言写的程序代码转换成pascal代码,用过还可以!
将C语言写的程序代码转换成pascal代码,用过还可以!-to write C-language code into pascal code can be used also.
- 2022-06-12 08:31:01下载
- 积分:1
-
单传感器对目标的定位跟踪。包括基于CA和IMM模型的EKF和UKF算法。...
单传感器对目标的定位跟踪。包括基于CA和IMM模型的EKF和UKF算法。-Single sensor on the target" s location tracking. Including those based on CA and the IMM algorithm model EKF and UKF.
- 2022-11-08 17:25:03下载
- 积分:1