Determina tipo de caracter






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

                      //Variables
                     string caracter, respuesta;
                     int a;


                    //Entrada

                    private void textBox1_TextChanged(object sender, EventArgs e)
               {
                caracter = entrada.Text;
                }




                   // Proceso y salida

                    private void button1_Click(object sender, EventArgs e)
                       {
                a = (int)char.Parse(caracter.ToUpper());
               if (a >= 48 && a <= 57)
       respuesta = "ES NUMERO";
               else if (a >= 65 && a <= 90)
       respuesta = "ES LETRA";
               else
       respuesta = "ES SIMBOLO";
               textBox2.Text = respuesta.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.