+ 2
What is !(x!=y) ???
2 ответов
+ 4
!(x!=y)
first x!=y means true if x and y are not equal
then !() means true if everything inside outputs false
so it is some kind of double negotiation where it will be true if x and y are the same
+ 1
it can be written as (x==y)