View Single Post
Old Jan 1st, 2007, 10:14 PM   #2
Game_Ender
Professional Programmer
 
Game_Ender's Avatar
 
Join Date: May 2006
Location: Maryland, USA
Posts: 306
Rep Power: 3 Game_Ender is on a distinguished road
What are you trying to achieve here:
java Syntax (Toggle Plain Text)
  1. // This looks incorrect
  2. ((a !<= 0 || a !>= 0))
  3. // Try this instead
  4. (!(a <= 0) || !(a >= 0))

In the future you should post the line and text of the error messages.
Game_Ender is offline   Reply With Quote