//Please do not use this static boolean isElementExistUgly(int[] ints, int b){ try{ int i=0; while (true){ if(ints[i++]==b) return true; } } catch(ArrayIndexOutOfBoundsException ex){ return false; } }