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
!(x<5) && !(y >=7)
!(x<5) && !(y >=7)
x>5 && y<7
and also,
!(a==b) || !(g !=5)
a!=b || g==5
Thanks,
John