Integers

  1. short (16 bit, -32,768 to 32,767 (= 2^15 -1)
  2. int and long, -2147483648 to 2147483647 (= 2^31 -1)
  3. Wraparound
  4. Operations:   +,   -,   *,   /,   %
  5. Precedence:
  6. Mixed mode (floats and ints)
  7. ++