using System;
public class Program
{
public static void Main()
int[] myInt = {8,9,1,5,6,3,4,};
bool found = false ;
for (int i=0; i<myInt.Length; i=i+1)
if(myInt[i] ==3)
Console.WriteLine("Found it at: " + i);
found = true;
}
if (found!=true) Console.WriteLine("It's not there");