boolean simplifying help

Thread Starter

loserbrewer

Joined Feb 8, 2007
1
New to this boolean stuff. Can anyone tell me if these look correct. Thanks for helping me learn.


!(x<5) && !(y >=7)
!(x<5) && !(y >=7)
x>5 && y<7


and also,


!(a==b) || !(g !=5)
a!=b || g==5

Thanks,
John
 
Top