Devuelve el número mayor





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 numero3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

       //Variables

       int numero1, numero2, mayor = 0;

      //Entrada

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

          private void textBox2_TextChanged(object sender, EventArgs e)
  {
  numero2 = int.Parse(textBox2.Text);
   }

        //Proceso y salida




        private void button1_Click(object sender, EventArgs e)
       {
        if (numero1 > numero2)
mayor = numero1;
       if (numero2 > numero1)
mayor = numero2;
       textBox3.Text = mayor.ToString();
        }


        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.