using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TablaDeLaVerdad
{
class Program
{
static void Main(string[] args)
{
//encuentra los numeros primos entre 2 y 100
int i, j;
bool esPrimo;
for (i = 2; i < 100;i++ )
{
esPrimo = true;
//prueba si un numero uniformemente es divisible
for(j=2;j<=i/j;j++)
if((i%j) == 0)
esPrimo=false;
if(esPrimo)
Console.WriteLine(i+" es primo");
Console.ReadLine();
}
}
}
}
Este comentario ha sido eliminado por el autor.
ResponderBorraresos son números primos mas NOo! tablas de verdad (¡ESTAFA!)
ResponderBorrar