When i try to compile this:
public static Rand searchCount (int[] x) { int a ; int b ; ... for (int l= 0; l
You declared them, but didn't initialize them with a value. Add something like this :
int a = 0;