CF 6.1 is wrong when performing BASIC math operations!!

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default CF 6.1 is wrong when performing BASIC math operations!!

    try this:

    <cfoutput>
    <cfset calc=652.06 - 652>
    #calc#
    </cfoutput>

    The result should be 0.06, but CF returns 0.0599999999999 !

    Does anybody know a workaround?

    LuigiPia Guest

  2. Similar Questions and Discussions

    1. Doing Several Math Operations During A SELECT?
      Hi there I have a table like so: cID | jID | Unit | Rate | ------------------------- 1 1 5 250 2 1 4 220 3 2...
    2. Math::Pari 'factor' is wrong
      #!/usr/local/bin/perl -w # use Math::PariInit qw( primes=12000000 stack=1e8 ); # use Math::Pari qw(:all); use Math::Pari 'factor'; # $i =...
    3. math.random.whats wrong with my code?!!
      Why is it doing this?? What I want is for my mc to slide to a new random x position when it is less than 5 pixels away from its target, it keeps...
    4. Math::GMP tests and Crypt::Random fail on Compaq (Math::Pari related ??)
      Hi, I've been compiling Math::GMP for different OS's in order to use Net::SFTP and I have successfully compiled and used it for Solaris,...
    5. Help needed with basic Perl math commands
      Hey everyone, I'm writting a simple script that takes data from a text file and calculates percentages. Lets call this file "data.txt" In data.txt,...
  3. #2

    Default Re: CF 6.1 is wrong when performing BASIC math operations!! :((

    Not sure why it would do that, but it does it in CF4.1 as well. Try
    this:

    #Evaluate(Round(calc*100)/100)#

    CFMadness Guest

  4. #3

    Default Re: CF 6.1 is wrong when performing BASIC math

    <cfset calc=DecimalFormat(652.06 - 652)>

    eastinq Guest

  5. #4

    Default Re: CF 6.1 is wrong when performing BASIC math

    I'm guessing that since CF is Java-based, a decimal value is stored as a float
    value, which has so many bytes. Additionally, essentially, 0.0599999999999 =
    0.06...that's pure Math, and I don't remember any of that, but take my
    word...it is. :-)

    Hope that this helps. Thanks.

    Chris

    cgsj_usa@yahoo.com Guest

  6. #5

    Default Re: CF 6.1 is wrong when performing BASIC math

    <cfset calc = (((652.06*100) - (652*100))/100)>
    tjfrevert Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139