Ordenar Vectores

Ordenar Vectores



En la realización de este taller fue necesario volver a repasar lo aprendido en Fundamentos de Programación. Sin embargo, acoplar lo aprendido en PseInt al lenguaje de C# 



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;
using Microsoft.VisualBasic;

namespace OrdenarVectores
{
    public partial class frmOrdenarVector : Form
    {
        public frmOrdenarVector()
        {
            InitializeComponent();
        }
        string num = "";

        private void btnIngresar_Click(object sender, EventArgs e)
        {
           for (int c = 0; c<6; c++)
            {
                num = Interaction.InputBox("Ingrese el valor " + (c + 1));

                lstDatos.Items.Add(num);

            }
        }

        private void btnOrdenar_Click(object sender, EventArgs e)
        {
            string[] Matriz = new string[lstDatos.Items.Count];
            for (int i = 0; i < lstDatos.Items.Count; i++)
            {
                Matriz[i] = lstDatos.Items[i].ToString();
                lstOrdenado.Items.Add(Matriz[i].ToString());
            }
            //agrega todos los valores al nuevo listbox
            //lstOrdenado.Items.AddRange(lstDatos.Items);

            //habilita la propiedad de ordenar
            lstOrdenado.Sorted=true;
        }

        private void btnNuevo_Click(object sender, EventArgs e)
        {
            //limpiar control
            lstDatos.Items.Clear();
            lstOrdenado.Items.Clear();

        }
    }
}


Comentarios

Entradas más populares de este blog

Matrices Especiales

CUIDADOS EN EL LABORATORIO E INSTRUMENTOS DE MEDIDA