Page 2 of 2

Re: Most code

PostPosted: Tue Jul 17, 2007 2:18 pm
by Jay S.
kyensoftware wrote:also, i dont understand double.


A double is a lot the same as a float (the only difference is that doubles take more memory than floats do--but with computers nowadays, that isn't much of a problem.)

Code: Select all
double dscore = 1.0;

Doubles can have numbers such as 1.333 or 1.23 and so on...

I'm assuming that's what you meant... :)