Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
what is a sample code to find the lowest number in an array?
Console.WriteLine("You have " & max_num & " students in class. ")
For items = 0 To max_num - 1
Console.Write("The student name is " & studentName(items) & " grade average is " & average(items))
Console.ReadLine()
Next
Console.WriteLine()
Console.Write("The highest average in the class is " & Highestnumber)
Console.WriteLine()
Console.WriteLine()
Console.Write("The Lowest average in the class is " & lowestNumber)
Console.ReadLine()
End Sub
End Module