Ask your own question, for FREE!
Computer Science 7 Online
OpenStudy (javk):

Need help with Floating Point Multiplication, I get something new each time, so then I start all over again, but I'm really really stuck.

OpenStudy (javk):

\[A=-1.1011\times 2^{14}\] \[B=-1.111\times2^{-62}\] Q: A*B

OpenStudy (anonymous):

Using vb.net you can do the following: Imports System Public Class Form1 Dim A As Double = Math.Pow(-1.1011, 1) * Math.Pow(2, 14) Dim B As Double = Math.Pow(-1.1011, 1) * Math.Pow(2, -62) Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load TextBox1.Text = (A * B).ToString End Sub End Class

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!