I have code where i must check if a variable has the value of variable a or b. also like this
public void test(int c){
int a= 1;
int b = 2;
if(c == (a ||b)){
.....
}
if there a problems how I worded my question, let me know.