/*
Code the function below to find the largest integer in an array.
*/
using System;
public class Program
{
public static void Main()
var numbers = new int[] { 4, 6, 1, 8, 3 };
Console.WriteLine(FindLargestNumber(numbers) == 8 ? "PASSED" : "FAILED");
}
public static int FindLargestNumber(int[] numbers)
int max = 0;
throw new NotImplementedException();