-
Get_Day
说明: 输入年份,判断是该年的那一天,
实现判断输入的正误!(Enter the year, is to determine the day of the year)
- 2009-07-31 20:12:05下载
- 积分:1
-
好可以程序控制打开或关闭CDROM,非常方便(2KB)
好可以程序控制打开或关闭CDROM,非常方便(2KB)-Good can control open or close the CDROM, very convenient (2KB)
- 2022-05-15 14:57:53下载
- 积分:1
-
flash
播放flash文件 ,含vb源码及可执行文件(the flash file play,include vb source file,IT is a easy sample.)
- 2020-06-16 14:34:29下载
- 积分:1
-
Graphene_Cond
通过matlab实现THz下石墨烯电导率的计算(Calculation of conductivity of graphene under THz by MATLAB)
- 2021-04-23 09:48:48下载
- 积分:1
-
Simple Robot Control Program
-- Simple Robot Control Program
--------------------------------------------------------------------------
-- Left is left IR sensor - 1=object to left
-- Right is rigth IR sensor - 1=object to right
-- Lmotor_dir 1=forward 0=reverse
-- Rmotor_dir 1=forward 0=reverse
-- Lmotor_speed 111=fast 000=slow
-- Rmotor_speed 111=fast 000=slow
--- Simple Robot Control Program
--------------------------------------------------------------------------
-- Left is left IR sensor- 1=object to left
-- Right is rigth IR sensor- 1=object to right
-- Lmotor_dir 1=forward 0=reverse
-- Rmotor_dir 1=forward 0=reverse
-- Lmotor_speed 111=fast 000=slow
-- Rmotor_speed 111=fast 000=slow
- 2022-05-21 11:44:55下载
- 积分:1
-
C# MSSQL门诊管理系统
C#结合SQLSERVER数据库打造的医院门诊管理系统,可实现医院药品管理、收费管理、药房发药管理、挂号登记管理、划价管理、药品库存量查询和科室挂号查询等功能。系统测试截图如图所示。
- 2023-07-16 12:35:03下载
- 积分:1
-
Zigbee-Temperature-Sensor-Network
基于CC2530的无线测温程序 IAR环境(Wireless Temperature Sensor Base on CC2530)
- 2021-01-09 09:58:51下载
- 积分:1
-
气泡样式jQuery提示框插件
一款可360度旋转的气泡样式jQuery提示框插件(A 360-degree rotating bubble-style jQuery prompt box plug-in)
- 2019-01-02 14:39:39下载
- 积分:1
-
uV_TW_CMSIS_TM4C_PID_MATLAB_LOOPBACK_2
pid implementation in c++ by backward euler approcimation
- 2019-01-30 19:23:17下载
- 积分:1
-
C# 泛型列表List用法示例
C# 泛型列表List用法示例,从给出的人员名单中,过滤人员名称中以"科"结束的序列,遍历查询结果。
private void Frm_Main_Load(object sender, EventArgs e)
{
List People = new List{//创建人员列表
new Person(1,"王*科"),
new Person(2,"王*科"),
new Person(3,"赵*东")};
var query = from p in People//过滤人员名称中以"科"结束的序列
where p.Name.EndsWith("科")
select new
{
人员ID = p.ID,
人员姓名 = p.Name
};
foreach (var item in query)//遍历查询结果
{
label1.Text += item + "
";
}
}
}
public class Person
{
public Person(int id, string name)
{
this.ID = id;
this.Name = name;
}
public int ID { get; set; }//人员ID
public string Name { get; set; }//人员姓名
}
- 2023-01-08 20:45:03下载
- 积分:1