public static void Main()
int[] numeros = new int[10];
for (int p=0; p<numeros.Length; p++)
Console.Write("Digite um número: ");
numeros[p] = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\n\n");
foreach (int p in numeros)
if (p % i == 0 && i != p)
if (p % i == 0 && i == p)
Console.WriteLine(p + " é primo");