hello all i am finishing up a tic tac toe game but i have a question about Boolean vs int. my question is what do i do if i need to use symbols such as <>||=&& with boolean. here is a fragment of what i am working on to give you an idea of what im trying to do
public boolean checkValid() { boolean col; boolean row; if(row<0||row>2) return true; }
any help and suggestions are always appreciated