Math Is Fun Forum

  Discussion about math, puzzles, games and fun.   Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ °

You are not logged in.

#1 2011-07-06 05:53:53

JASU
Member
Registered: 2011-07-06
Posts: 4

Binary To Decimal

binary is- 0.000,000,000,001,001,01
HOW TO GET DECIMAL

Offline

#2 2011-07-06 05:57:53

bobbym
bumpkin
From: Bumpkinland
Registered: 2009-04-12
Posts: 109,606

Re: Binary To Decimal

Hi JASU;

Welcome to the forum.

- 0.000,000,000,001,001,01

Is that a minus sign in front?


In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.

Offline

#3 2011-07-06 05:59:22

JASU
Member
Registered: 2011-07-06
Posts: 4

Re: Binary To Decimal

It Is +0.000,000,000,001,001,01

Offline

#4 2011-07-06 06:08:13

bobbym
bumpkin
From: Bumpkinland
Registered: 2009-04-12
Posts: 109,606

Re: Binary To Decimal

Hi;


In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.

Offline

#5 2011-09-02 12:29:45

ShivamS
Member
Registered: 2011-02-07
Posts: 3,648

Re: Binary To Decimal

Considering the fact that this is in the coders corner, you may want some program to do the conversion for you, so I wrote a program in C:

Last edited by Shivamcoder3013 (2011-09-02 12:30:06)

Offline

#6 2012-03-22 01:21:00

hammana
Member
Registered: 2012-03-02
Posts: 48

Re: Binary To Decimal

REM This program in Liberty Basic converts any numer a to any base b (I hopr it is right)
REM enter here your values of a and b
a=50109:b=10
    e=1
    while (a/b)>(b^e)
        e=e+1
        fl=fl+1
    wend
e1=e
'print e1
'stop
for e=e1 to 1 step-1
    if a>b^e then
        n=int(a/b^e)
        a=a-n*b^e
        print n;
     else
        print 0;
     end if
next e
print a

Offline

Board footer

Powered by FluxBB