Thread
:
Whats wrong with newb code?
View Single Post
Jan 1st, 2007, 10:14 PM
#
2
Game_Ender
Professional Programmer
Join Date: May 2006
Location: Maryland, USA
Posts: 306
Rep Power:
3
What are you trying to achieve here:
java Syntax
(
Toggle Plain Text
)
// This looks incorrect
(
(
a !<=
0
|| a !>=
0
)
)
// Try this instead
(
!
(
a <=
0
)
|| !
(
a >=
0
)
)
// This looks incorrect ((a !<= 0 || a !>= 0)) // Try this instead (!(a <= 0) || !(a >= 0))
In the future you should post the line and text of the error messages.
Game_Ender
View Public Profile
Find More Posts by Game_Ender