About 12,300,000 results
Open links in new tab
  1. What is the difference between float and double? - Stack Overflow

    Dec 31, 2021 · I've read about the difference between double precision and single precision. However, in most cases, float and double seem to be interchangeable, i.e. using one or the …

  2. Correct format specifier for double in printf - Stack Overflow

    Format %lf in printf was not supported in old (pre-C99) versions of C language, which created superficial "inconsistency" between format specifiers for double in printf and scanf.

  3. c++ - double and accuracy - Stack Overflow

    Jun 19, 2012 · A double typically provides 16 (±1) decimal digits. Your example shows this: 4 8 12 16 v v v v 0.947368421052631578 long double 0.947368421052631526 double The answers …

  4. What is the difference between "Double" and "double" in Java?

    39 This question already has answers here: Double vs double in java [duplicate] (7 answers) Difference between decimal, float and double in .NET? (19 answers)

  5. What does the !! (double exclamation mark) operator do in …

    The double "not" in this case is quite simple. It is simply two not s back to back. The first one simply "inverts" the truthy or falsy value, resulting in an actual Boolean type, and then the …

  6. java - add values to double [] arraylist - Stack Overflow

    1 Create the double[] first, add the numbers to it, and add that array to the List. (The variable should likely be declared as a List, btw, not an ArrayList, unless you're specifically passing it to …

  7. java - Cast Double to Integer - Stack Overflow

    494 A Double is not an Integer, so the cast won't work. Note the difference between the Double class and the double primitive. Also note that a Double is a Number, so it has the method …

  8. What exactly does Double mean in java? - Stack Overflow

    Jun 12, 2011 · A Double in Java is the class version of the double basic type - you can use doubles but, if you want to do something with them that requires them to be an object (such as …

  9. Integer division: How do you produce a double? - Stack Overflow

    double num = 5; That avoids a cast. But you'll find that the cast conversions are well-defined. You don't have to guess, just check the JLS. int to double is a widening conversion. From §5.1.2: …

  10. Biggest integer that can be stored in a double - Stack Overflow

    Dec 5, 2009 · The biggest/largest integer that can be stored in a double without losing precision is the same as the largest possible value of a double. That is, DBL_MAX or approximately 1.8 × …