-
CLOCK
钟面上的时针和分针之间的夹角总是在 0 ~180之间 ( 包括 0 和180 ) 。举例来说,在十二点的时候两针之间的夹角为 0 ,而在六点的时候夹角为180 ,在三点的时候为90 。本题要解决的是计算 12:00 到 11:59 之间任意一个时间的夹角。(The angle between the hour and minute hands of the clock face is always between 0 to 180 (including 0 and 180). For example, twelve o' clock, when the angle between the two pin 0, in the six o' clock when the angle is 180, three points for 90. This question must be resolved are the angle of the calculation of 12:00 to 11:59 any one time.)
- 2011-06-28 13:14:11下载
- 积分:1
-
很经典的一个小游戏,贪吃蛇,其中有不完善之处,还请指教
很经典的一个小游戏,贪吃蛇,其中有不完善之处,还请指教-tanchishe,a interesting game
- 2022-11-18 02:20:03下载
- 积分:1
-
ostu_test
使用IDL编程实现遥感图像的OSTU阈值分割(OSTU Threshold Segmentation of Remote Sensing Images Using IDL Programming)
- 2020-06-19 11:40:02下载
- 积分:1
-
DENISE
说明: 老外的,弹性波时间域全波形反演代码,The DENISE code was first developed by Daniel K?hn, Denise De Nil and Andr′ e Kurzmann at the Christian-
Albrechts-Universit?t Kiel and TU Bergakademie Freiberg (Germany) from 2005 to 2009.(Overseas, Elastic Wave Time Domain Full Waveform Inversion Code)
- 2019-06-05 10:50:49下载
- 积分: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
-
C#获取网页源代码
C#获取网页源代码,发送Http请求并接收Http应答,主要学习下通过输入网址URL后,如何获取并显示网页的源代码。
- 2022-09-02 20:20:02下载
- 积分:1
-
jquery全屏图片滑动
说明: 底部由CSS过渡效果的焦点按钮,焦点按钮可以直接点击滑动到相应(Focus button with CSS transition effect at the bottom. Focus button can be clicked and slid directly to the corresponding button.)
- 2019-03-27 14:12:33下载
- 积分:1
-
摄像头滤波
第十四届智能车华北赛一等奖滤波程序开源。(Open source filtering program for the first prize of the 14th North China Smart Vehicle Race.)
- 2020-06-18 09:20:02下载
- 积分:1
-
RPLS
用于非线性软测量建模,对于PLS解决不了的问题,具有良好的解决能力(Batch file name change procedures, such as multiple TXT, CSV files, etc., can be renamed as required)
- 2017-07-19 11:44:49下载
- 积分:1
-
PHEV_powertrain
matlab/simulink PHEV_power_train
- 2018-08-10 00:33:01下载
- 积分:1