十六进制数制到二进制,八进制和十进制数制的转换

Prerequisite: Number systems

先决条件: 数字系统

1)将十六进制数制转换为二进制数制 (1) Conversion of Hexadecimal Number System to Binary Number System)

To convert hexadecimal numbers into binary numbers, we can use the relationship between hexadecimal and binary numbers.

要将十六进制数转换为二进制数,我们可以使用十六进制和二进制数之间的关系。

DecimalHexadecimalBinary
000000
110001
220010
330011
440100
550101
660110
770111
881000
991001
10A1010
11B1011
12C1100
13D1101
14E1110
15F1111
小数 十六进制 二元
0 0 0000
1个 1个 0001
2 2 0010
3 3 0011
4 4 0100
5 5 0101
6 6 0110
7 7 0111
8 8 1000
9 9 1001
10 一个 1010
11 1011
12 C 1100
13 d 1101
14 Ë 1110
15 F 1111

Example 1: Convert (7A.2C)16 into ( ? )2

示例1:将(7A.2C) 16转换为(?) 2

Solution:

解:

Using the table provided above, we can replace hexadecimal numbers with their equivalent binary digits.

使用上面提供的表,我们可以将十六进制数字替换为它们的等效二进制数字。

Therefore, (7A.2C)16 = (0111 1010.0010 1100)2

因此, (7A.2C) 16 =(0111 1010.0010 1100) 2

Example 2: Convert (D2A.2B7)16 into ( ? )2

示例2:将(D2A.2B7) 16转换为(?) 2

Solution:

解:

Using the table provided above, we can replace hexadecimal numbers with their equivalent binary digits.

使用上面提供的表,我们可以将十六进制数字替换为它们的等效二进制数字。

Therefore, (D2A.2B7)16 = (1101 0010 1010.0010 1011 0111)2

因此, (D2A.2B7) 16 =(1101 0010 1010.0010 1011 0111) 2

Example 3: Convert (FF18.5E5)16 into ( ? )2

示例3:将(FF18.5E5) 16转换为(?) 2

Solution:

解:

Using the table provided above, we can replace hexadecimal numbers with their equivalent binary digits.

使用上面提供的表,我们可以将十六进制数字替换为它们的等效二进制数字。

Therefore, (FF18.5E5)16 = (1111 1111 0001 1000. 0101 1110 0101)2

因此, (FF18.5E5) 16 =(1111 1111 0001 1000. 0101 1110 0101) 2

2)将十六进制数制转换为八进制数制 (2) Conversion of Hexadecimal Number System into Octal Number System)

Conversion of the hexadecimal number to octal number can be done using a certain definite path. We first have to convert hexadecimal numbers to a binary number and then convert a binary number into octal number i.e., Hexadecimal Number → Binary Number → Octal Number

可以使用某个确定的路径将十六进制数转换为八进制数。 我们首先必须将十六进制数转换为二进制数,然后将二进制数转换为八进制数,即十六进制数→二进制数→八进制数

Example 1: Convert (1D.E)16 into ( ? )8

示例1:将(1D.E) 16转换为(?) 8

Solution:

解:

Step 1: Converting the first hexadecimal number into a binary number. Thus, (1D.E)16 = (0001 1101.1110)2

步骤1:将第一个十六进制数转换为二进制数。 因此, (1D.E) 16 =(0001 1101.1110) 2

Step 2: Now, converting the binary number into an octal number which gives (00011101.1110)2 = (35.7)8

步骤2:现在,将二进制数转换为八进制数,得出(00011101.1110) 2 =(35.7) 8

Therefore, (1D. E)16 = (35.7)8

因此(1D.E) 16 =(35.7) 8

Note: To know how to convert binary number into octal number? Read: conversion of Binary number system to octal number system.

注意:要知道如何将二进制数转换为八进制数? 阅读: 将二进制数制转换为八进制数制 。

Example 2: Convert (3B.4)16 into ( ? )8

示例2:将(3B.4) 16转换为(?) 8

Solution:

解:

Step 1: Converting the first hexadecimal number into a binary number. Thus, (3B.4)16 = (0011 1011.0100)2

步骤1:将第一个十六进制数转换为二进制数。 因此, (3B.4) 16 =(0011 1011.0100) 2

Step 2: Now, converting the binary number into an octal number which gives (0011 1011.0100)2 = (73.20)8

步骤2:现在,将二进制数转换为八进制数,得出(0011 1011.0100) 2 =(73.20) 8

Therefore, (3B.4)16 = (73.20)8

因此, (3B.4) 16 =(73.20) 8

3)将十六进制数系统转换为十进制数系统 (3) Conversion of Hexadecimal Number System to Decimal Number System)

Conversion of hexadecimal number into a decimal number can be done using the positional weights by multiplying the positional weights with the corresponding bit and add them all together to obtain the decimal number.

可以使用位置权重将十六进制数转换为十进制数,方法是将位置权重乘以相应的位,然后将它们全部加在一起以获得十进制数。

  • In an integral part of the hexadecimal number, the weights follow the pattern as 160, 161, 162, 163, 164, 165 and so on from right to left.

    在十六进制数的一个组成部分,权重按照图案16 0,16 1,16 2,16 3,16 4,16 5等从右到左。

    In the fractional part of the hexadecimal number, the weights follow the pattern as 16-1, 16-2, 16-3, 16-4, 16-5 and so on from left to right.

    在十六进制数的小数部分,权重按照图案16 -1,16 -2,16 -3,16 -4,16 -5等从左到右。

    Only thing to be kept in mind is A = 10, B = 11, C = 12, D = 13, E = 14, F = 15.

    唯一要记住的是A = 10B = 11C = 12D = 13E = 14F = 15

Example 1: Convert (75.3)16 into ( ? )10

示例1:将(75.3) 16转换为(?) 10

Solution:

解:

    (75.3)16    = 7 * 161 + 5 * 160 + 3 * 16-1
= 112 + 5 + 0.1875 = (117.1875)10

We multiply each bit with the corresponding positional weight and then add them together to get the result.

我们将每个位乘以相应的位置权重,然后将它们加在一起以获得结果。

Therefore, (75.3)16 = (117.1875)10

因此, (75.3) 16 =(117.1875) 10

Example 2: Convert (CD3.B70A)16 into ( ? )10

示例2:将(CD3.B70A) 16转换为(?) 10

Solution:

解:

    (CD3.B70A)16    = C*162 + D*161 + 3*160 + B*16-1 + 7*16-2 + 0*16-3 + A*16-4
= 12*256 + 13*16 + 3*1 + 11/16 + 7/256 + 0 + 10/65536
= 3072+ 208 + 3 + 0.6875 + 0.0273 + 0.0001
= (3283.7149)10

We multiply each bit with the corresponding positional weight and then add them together to get the result.

我们将每个位乘以相应的位置权重,然后将它们加在一起以获得结果。

Therefore, (CD3.B70A)16 = (3283.7149)10

因此, (CD3.B70A) 16 =(3283.7149) 10

翻译自: https://www.includehelp.com/basics/conversion-of-hexadecimal-number-system-to-binary-octal-and-decimal-number-systems.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543684.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ldo regula_使用C中的Regula Falsi方法找到复多项式方程的根

ldo regulaRegula Falsi方法 (Regula Falsi method) About the method: 关于方法: We often hear many children and even many adults complaining about the difficulty level that they face while solving complex polynomial equations. It is also difficult…

解决一次由于SSL证书到期导致的网站不能访问的问题(Nginx,php,Apache)

1. 现象放假期间收到zabbix报警,提示主站访问不了,报502。2.排查思路及过程因为是过年休息,放假前又没有更新,基本可以排除是更新和配置导致的问题。ssh连上服务器发现服务器连接和资源都没问题。这是一套lnamp架构的网站&#xf…

python字典按键值排序_在Python中按键或值按升序和降序对字典排序

python字典按键值排序Problem Statement: Write a Python program to sort (ascending and descending) a dictionary by key or value. 问题陈述:编写一个Python程序,以按键或值对字典进行排序(升序和降序)。 Example: 例: Input: diction…

Try Redis : Redis 入门教程

开篇 Redis 是一种以键值对(key-value)存储数据的NoSQL数据库。 键值对存储数据的本质是以某个键存储某个值。之后你可以用这个键把存储的值取出来。可以用SET命令以键‘servername’存储值‘fido’: SET servername fido这样,数据…

在C ++中使用getter和setter函数创建具有X和Y轴的类Point

We have two declare a point class with two Axis X and Y and we have to create/design its getter and setter functions. 我们有两个声明带有两个Axis X和Y的点类,并且我们必须创建/设计其getter和setter函数。 As we know that a class has some data member…

go newscanner判断文件读取结束_Go单元测试-testing

在开发程序中,很重要一点就是测试,测试可以保证代码的质量,保证每个函数可以正常运行。但是如何保证写出来的程序是否正确。单元测试一般是用来测试我们的代码逻辑有没有问题,有没有按照我们期望的运行,以保证代码质量…

_.uniq_在Ruby中使用Array.compact和Array.uniq方法从Array中移除元素

_.uniqRuby Array.compact和Array.uniq方法 (Ruby Array.compact and Array.uniq Methods) In the last article, we have gone through two different methods of deleting elements from the Array. We have seen their implementation with the help of their syntaxes and …

清除缓存的实现

现有的清除缓存存在着一些问题,占坑查询,后续进行完善转载于:https://www.cnblogs.com/lazVy/p/5192244.html

divi模板下载_Java Math类静态double IEEEremainder(double divi,double divisor)的示例

divi模板下载数学类静态double IEEEremainder(double divi,double divisor) (Math Class static double IEEEremainder(double divi , double divisor)) This method is available in java.lang package. 此方法在java.lang包中可用。 This method is used to retur…

nextdate函数白盒测试问题 软件测试_软件测试基本常识

一、软件测试的分类:1.按照是否执行被测试软件来分:静态测试:是指不运行软件,测试包括代码检查、静态结构分析、代码质量度量等,主要对软件需求说明书、设计说明书、软件源代码进行检查与分析。 动态测试:…

java 大小写转换函数_不使用Java中的任何库函数将大写转换为小写

java 大小写转换函数Given a string and we have to convert it from uppercase to lowercase. 给定一个字符串,我们必须将其从大写转换为小写。 Examples: 例子: Input:IncludeHelp.comOutput:includehelp.comInput:[email protected]Output:[email p…

ideatomcat老是运行以前的项目_日“吞”150吨垃圾,禅城集中式餐厨垃圾处理项目启用...

12月9日,禅城区集中式餐厨垃圾处理项目正式投料试运行,该项目如今每天可处理150吨垃圾。这意味着禅城区将通过先进技术实现餐厨垃圾资源化、减量化、无害化处理。禅城区集中式餐厨垃圾处理项目位于佛山市南庄污水处理厂首期工程北侧,禅港路西…

【HDOJ】4363 Draw and paint

看题解解的。将着色方案映射为40*40*5*5*5*5*2个状态&#xff0c;40*40表示n*m,5*5*5*5表示上下左右相邻块的颜色&#xff0c;0表示未着色。2表示横切或者竖切。基本思路是记忆化搜索然后去重&#xff0c;关键点是可能未切前当前块已经着色了。 1 /* 4363 */2 #include <ios…

java怎么知道上传文件是否成功_文件包含漏洞之——tomcat CVE-2020-1938漏洞复现

这个漏洞是今年2月份出现的&#xff0c;他的影响范围也是非常广的。2月20日&#xff0c;国家信息安全漏洞共享平台&#xff08;CNVD&#xff09;发布了Apache Tomcat文件包含漏洞&#xff08;CNVD-2020-10487/CVE-2020-1938&#xff09;&#xff0c;这个漏洞是由于Tomcat AJP协…

css word-wrap_CSS中分词“ break-all”和“ break-word”的值之间的差异

css word-wrapDefinition: 定义&#xff1a; What is the most fundamental element that comes to mind when you are considering to develop a web page? Words! If that was your answer, then pat yourself because you are already aware of what we are going to disc…

Android Studio apk 打包流程

1.Build -> Generate Signed APK...&#xff0c;打开如下窗口 2.假设这里没有打过apk包&#xff0c;点击Create new&#xff0c;窗口如下 这里只要输入几个必要项 Key store path&#xff08;生产key文件的保存路径 &#xff09; Key store password&#xff08;key 存储密码…

update yum 到指定版本_CentOS系统升级至指定版本

摘要&#xff1a;CentOS系统下用yum updates命令默认只能升级到最新版本&#xff0c;CentOS仓库并不维护历史版本&#xff0c;所以只能使用 vault.centos.org 历史版本快照进行更新。本文以...CentOS系统下用yum updates命令默认只能升级到最新版本&#xff0c;CentOS仓库并不维…

Redis过期key清理机制

Redis的key过期时间探讨 说到Redis是一个典型的key-value非关系型数据库&#xff0c;存储的key基本都有过期时间&#xff0c;或者有默认的过期时间&#xff0c;或者不设置的话永久不失效&#xff08;内存空间足够大的情况下&#xff0c;生产环境一般放置系统的配置参数才这样&a…

错误:使用printf()打印Hello world时未声明'Hello'/ Text

While printing "Hello world", if this error Hello undeclared occurred that means Hello is supplied to the compiler as a variable not as a text/string. 在打印“ Hello world”时 &#xff0c;如果发生未声明的错误“ Hello” &#xff0c;则意味着Hello是…

C#中毫米与像素的换算方法

C#中以像素作为尺寸单位&#xff0c;像素是一种相对的尺寸概念&#xff0c;与毫米的转换与当前显示器的分辨率有关。在不同分辨率下转换的系数不同。 借助GDI可以完成毫米至像素的转换。 public static double MillimetersToPixelsWidth(double length) //length是毫米&#xf…