home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Book HomeActionScript: The Definitive GuideSearch this book

4.2. Integers and Floating-Point Numbers

Most programming languages distinguish between two kinds of numbers: integers and floating-point numbers. An integer is a whole number that has no fractional component. Integers can be positive or negative and include the number 0. Floating-point numbers ( floats for short) can include a fractional value represented after a decimal point, as in 0.56, 199.99, and 3.14159. So 1, 34523, -3, 0, and -9999999 are integers, but 223.45, -0.56, and 1/4 are floats.



Library Navigation Links

Copyright © 2002 O'Reilly & Associates. All rights reserved.