using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { struct Datos { public int Id; public string Nombre; public string Carrera; } static void Main(string[] args) { Datos[] Vec = new Datos[11]; int I; for (I = 0; I < 11; I++) { Vec.Id = I; Console.Write("Nombre a registrar: "); Vec.Nombre = Console.ReadLine(); Console.Write("Carrera: "); Vec.Carrera = Console.ReadLine(); } Console.Clear(); for (I = 0; I < 11; I++) Console.WriteLine("Id: " + Vec.Id.ToString() +", Carrera: "+Vec.Carrera+ ", Nombre: " + Vec.Nombre); Console.ReadLine(); } }}