Determinar si es número Primo







using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace numero5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

        //Variables
         int numeroentrada, i;
         bool flag;
         string respuesta = "";

        //Entrada

             private void textBox1_TextChanged(object sender, EventArgs e)
    {
     numeroentrada = int.Parse(textBox1.Text);
     }

       // Proceso y Salida

        private void button1_Click(object sender, EventArgs e)
    {
    flag = true;
    i = 2;
    while (i <= numeroentrada / 2)
            {
             if (numeroentrada % i == 0)
            {
             flag = false;
             break;
             }
               i++;
               }
                       if (flag)
               respuesta = "ES PRIMO";
      else
               respuesta = "NO ES PRIMO";

                       textBox2.Text = respuesta;
                       }




           private void button2_Click(object sender, EventArgs e)
               {
               Application.Exit();
               }
          }
     }










No hay comentarios:

Publicar un comentario

Nota: solo los miembros de este blog pueden publicar comentarios.