April 19, 2024, 04:44:35 PM

News:

Own IWBasic 2.x ? -----> Get your free upgrade to 3.x now.........


Convert int to double?

Started by kibalab, October 30, 2007, 08:46:52 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

kibalab

How to convert a int to double?
I have 2 integer var and 1 double var.

Now I want to do this:  myDouble = myInt1 / myInt2;

But the result is still integer!
What to do?

talun

Hi, I'm not an Aurora expert but the sample below seems to work


global sub main( )
{
   double myDouble;
   int myInt1, myInt2;

   myInt1 = 123;
   myInt2 = 456;
   myDouble = myInt1 / (myInt2*1.0);

   print (using("#.######",myDouble));
   print("press any key to close");
   While GetKey() = "";

}


Please let me know if I'm wrong

bye

Sergio

kibalab

Thank you, the "*1.0" did it  :D