About 372,000 results
Open links in new tab
  1. Converting binary to decimal integer output - Stack Overflow

    16 There is actually a much faster alternative to convert binary numbers to decimal, based on artificial intelligence (linear regression) model: Train an AI algorithm to convert 32-binary …

  2. Bash shell Decimal to Binary base 2 conversion - Stack Overflow

    Apr 23, 2012 · 8 Decimal to binary conversion in Bash: I'm using Ubuntu 14.04 to do this. Convert the decimals 1 through 5 to binary.

  3. binary - How to calculate excess-256 and excess-128? - Stack …

    Oct 3, 2011 · I have the number -37 in decimal. Could you please tell me what its representation is in excess-256 and excess-128? Its normal binary representation is -100101 and in 8 bits …

  4. Converting Decimal to Binary Java - Stack Overflow

    Feb 9, 2013 · I am trying to convert decimal to binary numbers from the user's input using Java. I'm getting errors. package reversedBinary; import java.util.Scanner; public class …

  5. binary - convert decimal numbers to excess-127 representations

    Represent the following decimal numbers in binary using 8-bit signed magnitude, one’s complement, two’s complement, and excess-127 representations. a) 77 b) –42 c) 119 d) –107 …

  6. Java: switching between binary and decimal "modes" on a calculator

    Oct 31, 2015 · I've essentially created 2 separate convoluted calculators, one that calculates decimal numbers and another that calculates binary numbers. The user inputs the equation …

  7. How to convert decimal to binary in JS? - Stack Overflow

    Sep 30, 2014 · Note that this answer doesn't correctly convert negative decimal numbers to binary as represented in memory. If that's important to you see @Gepser Hoil's answer.

  8. How can I perform math operations on binary numbers?

    Oct 6, 2009 · 10 I think you're confused about what binary is. Binary and decimal are just different representations of a number - e.g. 101 base 2 and 5 base 10 are the same number. The …

  9. How to convert binary floating point number to decimal number

    Mar 10, 2013 · How to convert binary floating point number to decimal number Asked 12 years, 9 months ago Modified 12 years, 9 months ago Viewed 29k times

  10. How to convert an IEEE 754 single-precision binary floating-point …

    Apr 30, 2015 · Not too long ago, I had the opportunity to write a similar piece of code that you, and others, may find useful. It takes a character string representing a floating point number as …