-
cop2000
说明: cop2000实现无符号数乘法——两个8位无符号数相乘,所乘结果是16位,采用原码一位乘,在计算时,用乘数寄存器的最低位来控制部分积是否与被乘数相加,然后右移部分积和乘数,同时乘数寄存器接收部分积右移出来的一位,完成运算后,部分积寄存器保存乘积的高位部分,乘数寄存器中保存乘积的低位部分。(Cop2000 implements unsigned number multiplication-multiplication of two 8-bit unsigned numbers. The multiplied result is 16 bits. When calculating, the lowest bit of multiplier register is used to control whether or not the partial product is added to the multiplier, and then the partial product and multiplier are moved right. At the same time, the multiplier register receives the right-shifted bit of the partial product. After completing the operation, the partial product register saves the product. The higher part, the lower part of the product is saved in the multiplier register.)
- 2021-01-03 19:28:55下载
- 积分:1
-
Bilibili_video_download-master
说明: 配置好python后,可以用来下载B站视频,简单易上手,从学习到应用的(Configure Python to download B station video)
- 2020-05-15 17:03:53下载
- 积分:1
-
C#多线程例子
多线程的一些简单例子,针对初学者的一些简单线程代码,希望对大家可以起到帮助,多线程的一些简单例子,针对初学者的一些简单线程代码,希望对大家可以起到帮助,多线程的一些简单例子,针对初学者的一些简单线程代码,希望对大家可以起到帮助,
- 2022-02-25 06:02:22下载
- 积分:1
-
文本文件有关操作
文本文件有关操作-text of the operation
- 2022-10-11 00:30:03下载
- 积分: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
-
这是一个反字代码
this a code to reverse words-this is a code to reverse words
- 2023-08-26 11:35:04下载
- 积分:1
-
Wz_EventServer
说明: Wz_EventServer para Mu 075
- 2019-05-21 03:17:44下载
- 积分:1
-
boom网站宝贝v2.0
boom网站宝贝v2.0-website v2.0
- 2022-11-20 07:00:03下载
- 积分:1
-
10399903
说明: 采用PQ,VF控制策略,包括风机、光伏等设备参与(Using PQ, VF control strategy, including fan, photovoltaic equipment participation)
- 2019-01-14 22:28:41下载
- 积分:1
-
kwnn
基于KNN算法的室内指纹匹配定位算法代码,有注释(Indoor fingerprint matching positioning algorithm code based on KNN algorithm, annotated)
- 2018-06-09 11:31:23下载
- 积分:1