public static int[] tiempo = new int[13];
public static float[] temperatura = new float[13];
public static Random rnd = new Random();
public static void Main()
Console.WriteLine("::: Bienvenido al Termometro digital:::");
Console.WriteLine("Los registros de temperatura durante los 3 minutos fueron: ");
Console.WriteLine("La temperatura con mayor grado registrado fue");
Console.WriteLine("::: Gracias por usar nuestro Termometro:::");
public static void Registros()
temperatura[i] = rnd.Next(-20, 40);
Console.WriteLine("La temperatura fue de "+temperatura[i]+" en el tiempo de "+tiempo[i]+" segundos");
public static void MayorRegistro()
float maximo = temperatura[12];
int tiempoMaximo = tiempo[12];
if (temperatura[j]>=maximo){
tiempoMaximo = tiempo[j];
Console.WriteLine("El registro mas alto fue de "+ maximo+" grados centigrados");
Console.WriteLine("En el segundo "+tiempoMaximo);