using System;
public class Program
{
public static void Main()
int[] arr = { 1, 3, 7, 9, 4 };
int target = 11;
for(int i=0; i<arr.Length; i++)
if(arr[i] == target)
Console.WriteLine("Elemment Found" );
return;
}
Console.WriteLine("Element NotFound");