Generation

generate functionThu, 29 Jun 2023

RELAÇÃO DE 60 NUMEROS INSERIDOS EM UMA TABELA E VERIFICADO QUANTAS VEZE REPETE REPENTEN-SE OS NUMEROS E QUAL O INTERVALO DE TEMPO PARA ESSE NUMERO REPETIR NOVAMENTE.

# using System; using System.Collections.Generic; class Program { static void Main() { int[] nums = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; foreach (int num in nums) { Console.WriteLine(num); } Console.ReadKey(); } }

Want to kickstart your project?Use the new AI Studio to create your code