public int SSearch(int[] x, int t){ for (int i = 0; i < x.Length; i++) { if (x[i] == t) { return i; } } return -1;}