约 43,300,000 个结果
在新选项卡中打开链接
  1. Biggest integer that can be stored in a double - Stack Overflow

    2009年12月5日 · 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 …

  2. What is the difference between float and double? - Stack Overflow

    2021年12月31日 · 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 …

  3. Difference between numeric, float and decimal in SQL Server

    2009年6月29日 · Double is a good combination of precision and simplicty for a lot of calculations. You can create a very high precision number with decimal -- up to 136-bit -- but you also have …

  4. c++ - what's a variable with & -> double& - Stack Overflow

    2011年9月12日 · 5 double& is just a double passed by reference. In VB.NET, it would be declared ByRef dec_deg as Double. EDIT: However, I would recommend instead of using a void …

  5. 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.

  6. What's the difference between a single precision and double …

    The term double precision is something of a misnomer because the precision is not really double. The word double derives from the fact that a double-precision number uses twice as many bits …

  7. decimal vs double! - Which one should I use and when?

    2009年7月22日 · When should I use double instead of decimal? has some similar and more in depth answers. Using double instead of decimal for monetary applications is a micro …

  8. What is the size of float and double in C and C++? [duplicate]

    2014年8月27日 · The type double provides at least as much precision as float, and the type long double provides at least as much precision as double. The set of values of the type float is a …

  9. Does double have a greater range than long? - Stack Overflow

    2012年10月23日 · A simple answer is that double is only accurate to 15-16 total digits, as opposed to long which (as an integer type) has an absolute accuracy within an explicit digit …

  10. .net - Comparing double values in C# - Stack Overflow

    Double (called float in some languages) is fraut with problems due to rounding issues, it's good only if you need approximate values. The Decimal data type does what you want.