From 765e13907a49697e2c4fd8233005b3c858ac8c6d Mon Sep 17 00:00:00 2001 From: rktanikawa <44373552+rktanikawa@users.noreply.github.com> Date: Fri, 16 Aug 2019 10:13:05 -0300 Subject: [PATCH] translated from english (#33111) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Escrevendo os restos de baixo para cima resulta no padrão binario: Verificando a resposta convertendo o número binário de volta para decimal: Então a sua resposta está correta --- .../converting-from-decimal-to-binary/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/guide/portuguese/mathematics/converting-from-decimal-to-binary/index.md b/guide/portuguese/mathematics/converting-from-decimal-to-binary/index.md index 0280709cbb..7abff01344 100644 --- a/guide/portuguese/mathematics/converting-from-decimal-to-binary/index.md +++ b/guide/portuguese/mathematics/converting-from-decimal-to-binary/index.md @@ -20,15 +20,15 @@ Convertendo o número decimal 30 em binário. 3 / 2 = 1 r 1 1 / 2 = 0 r 1 - Writing out the remainders bottom to top gives you the bit pattern: + Escrevendo os restos de baixo para cima resulta no padrão binario: 11110 - Checking your answer by converting the binary number back to decimal: + Verificando a resposta convertendo o número binário de volta para decimal: (1*2^4)+(1*2^3)+(1*2^2)+(1*2^1)+(0*2^0) = 30 - So your answer is correct. + Então a sua resposta está correta. ``` Convertendo o número decimal 116 em binário. @@ -41,14 +41,14 @@ Convertendo o número decimal 116 em binário. 3 / 2 = 1 r 1 1 / 2 = 0 r 1 - Writing out the remainders bottom to top gives you the bit pattern: + Escrevendo os restos de baixo para cima resulta no padrão binario: 1110100 - Checking your answer by converting the binary number back to decimal: + Verificando a resposta convertendo o número binário de volta para decimal: (1*2^6)+(1*2^5)+(1*2^4)+(0*2^3)+(1*2^2)+(0*2^1)+(0*2^0) = 116 - So your answer is correct. + Então a sua resposta está correta. -``` \ No newline at end of file +```