i got confused on (not equal, !=) operation. i have this data
1 4 8 8
3 5 4 5
4 2 2 3
5 3 7 0
above there are 4 columns and 4 rows. my idea is, in my program, the second column will detect whether each number in this columns have the same value same first column or not, if NO then, it will return the second columns.. same goes to third column
but if i put != this operation, then it will not return as what i want.
but if i put == this operation, then it will give the same value as first column which i don't want this to be happened.
i really hope anyone here can help me and tell me why this happened.