Inverso de un Número





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

        int d, numero, inverso = 0;

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

        private void button1_Click(object sender, EventArgs e)
            {
            textBox1.Clear();
            textBox2.Clear();
            }




        private void button2_Click(object sender, EventArgs e)
            {
            numero = int.Parse(textBox1.Text);
            while (numero > 0)
                {
                d = numero % 10;
                numero = numero / 10;
                inverso = inverso * 10 + d;
                }
            textBox2.Text = inverso.ToString();
            }
        }
    }

No hay comentarios:

Publicar un comentario

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