Convert float value to integer

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Convert float value to integer

    l have a simple question ...l want to convert value from float to interger

    exemple 5.399 convert to 5
    or 5.79 convert to 6

    afroman22 Guest

  2. Similar Questions and Discussions

    1. #39954 [NEW]: ~ operator doesn't convert string to integer first
      From: olafvdspek at gmail dot com Operating system: Windows XP PHP version: 5.2.0 PHP Bug Type: Scripting Engine problem Bug...
    2. #39689 [NEW]: PHP converts float to integer incorrectly
      From: toomuchphp-phpbugs at yahoo dot com Operating system: Mac OS X PHP version: 5.2.0 PHP Bug Type: Math related Bug...
    3. How to convert string to float?
      i want to covert a querystring to float number in asp. what function should i use? i know cint() can convert string to int but how about float?
    4. Re-convert Currency back to Integer?
      Database: Access 2000 How does one switch a converted currency format back to a plain integer in Asp. I have tried Cint but this produces an...
    5. How can I get INTeger from float
      Folks, If I have a number that includes decimal points and I want to remove everything right of the decimal, how do I do it - I know I could...
  3. #2

    Default Re: Convert float value to integer

    add .5 and use the int function.
    Dan Bracuk Guest

  4. #3

    Default Re: Convert float value to integer

    or easier yet, you could use ROUND

    SafariTECH 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