Is it possible to find which expression evaluated true in the following if condition and on that basis I can find the value of a.
import java.util.*;
class a {
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
for(int i=0;i<100;i++){
if((i==a)||((i+100)==a)||((i+200)==a)||((i+300)==a)||((i+400)==a)||((i+500)==a)||((i+600)==a)||((i+700)==a)||((i+800)==a)||((i+900)==a)){
//code
System.out.println("? condition is evaluated true");
}
}
}
}
//I don't want to take more than one if statement.