Posts by Manoel Pedro • 1 point
1 post
-
0
votes1
answer28
viewsQ: I am making a simple program to study Vectors, when I run it appears the error "Index was Outside the Bounds of the array" on line 24
using System; public class Program { public static void Main() { int i, n; Console.WriteLine("Entre com o número de Alunos: "); n = Convert.ToInt32(Console.ReadLine()); String[] nome = new String…