I have this code to convert fractional base 10 into base 2:
while($num > 0)
{
echo "<tr><td>". $num." * 2 = </td><td>". $num*2 ."</td></tr>";
$num= $num*2;
if($num>= 1)
{ $num-= 1; $bin .= "1"; }
else
{ $bin .= "0"; }
}
anyway, stuff gets off, example:
Quote0.7 * 2 = 1.4
0.4 * 2 = 0.8
0.8 * 2 = 1.6
0.6 * 2 = 1.2
0.2 * 2 = 0.4
0.4 * 2 = 0.8
0.8 * 2 = 1.6
0.6 * 2 = 1.2
0.2 * 2 = 0.4
0.4 * 2 = 0.8
0.8 * 2 = 1.6
0.6 * 2 = 1.2
0.2 * 2 = 0.4
0.4 * 2 = 0.799999999999
0.799999999999 * 2 = 1.6
0.599999999999 * 2 = 1.2
0.199999999997 * 2 = 0.399999999994
0.399999999994 * 2 = 0.799999999988
0.799999999988 * 2 = 1.59999999998
0.599999999977 * 2 = 1.19999999995
0.199999999953 * 2 = 0.399999999907
0.399999999907 * 2 = 0.799999999814
0.799999999814 * 2 = 1.59999999963
0.599999999627 * 2 = 1.19999999925
0.199999999255 * 2 = 0.39999999851
0.39999999851 * 2 = 0.79999999702
0.79999999702 * 2 = 1.59999999404
0.59999999404 * 2 = 1.19999998808
0.199999988079 * 2 = 0.399999976158
0.399999976158 * 2 = 0.799999952316
0.799999952316 * 2 = 1.59999990463
0.599999904633 * 2 = 1.19999980927
0.199999809265 * 2 = 0.39999961853
0.39999961853 * 2 = 0.799999237061
0.799999237061 * 2 = 1.59999847412
0.599998474121 * 2 = 1.19999694824
0.199996948242 * 2 = 0.399993896484
0.399993896484 * 2 = 0.799987792969
0.799987792969 * 2 = 1.59997558594
0.599975585938 * 2 = 1.19995117188
0.199951171875 * 2 = 0.39990234375
0.39990234375 * 2 = 0.7998046875
0.7998046875 * 2 = 1.599609375
0.599609375 * 2 = 1.19921875
0.19921875 * 2 = 0.3984375
0.3984375 * 2 = 0.796875
0.796875 * 2 = 1.59375
0.59375 * 2 = 1.1875
0.1875 * 2 = 0.375
0.375 * 2 = 0.75
0.75 * 2 = 1.5
0.5 * 2 = 1
obviously, 0.4 * 2 does not equal 0.799999999999
how can i fix these inaccuracies?
Material Issuing for receiving batch
Dear All experts in MM/ PP,
division gives infinity anser
int main(){ int z=0; int i=1/z; cout<<i;}It doesn't throw any error in Visual Studio 2008. .......What setting one has to change so that it will show runtime error in VS 2008.....
checkbox update
I am having a brain fart right now and i cant remember how to do this. if anyone could help that would be great. I have search google and this forum but have not found what i am looking for.thankswhen
Giving the below syntax error
Dear Experts,
Lack of simpleXML Documentation
What is up with this.Look at: http://www.php.net/manual/en/function.simplexml-load-file.phpThere is no documentation with the ns parameter of that function and I am currently trying to deal with
PHP FTP connect doesn't work with correct login
Hi!i am working on this test code:Quote<?php $ftp_server = "ftp.*******.it";$ftp_user = "weburl@*******.it";$ftp_pass = "CENSORED";// set up a
PHP and MySQL Question/Help
I have a MySQL db with all my servers and all their details like server name, IP, OS, RAM etc etc 26 in total. I have a PHP page which will list all server names with a link on the page and when you
Multiple server callbacks (NOT POSTBACKS)
Hello,
textfield unchanged
hi,i want my form to know whether its textbox is unchange or not.if($textbox == 'unchanged'){ //do this}else{ //do this}ive been searching all day , but cant find the exact solutions...
need help in dynamic select menu in php
hi i have created a dynamic select menu using php. i have a problem in that which is when the user select any value in that menu and press submit then it does not pass to next page.my code is