You are not logged in.
Pages: 1
binary is- 0.000,000,000,001,001,01
HOW TO GET DECIMAL
Offline
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
It Is +0.000,000,000,001,001,01
Offline
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
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
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
Pages: 1