Mostrar Matrices En formulario dataGridView C# "las matrices tiene filas y columnas"
Declarar una matriz (Visual C#)..Para poder recorrer una matriz debemos usar (siglo FOR o While) nos permitirán recorrerá la dimención de nuestra matriz .Este tutorial describe las matrices y muestra cómo funcionan en C#.
codigo fuente...
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.VisualBasic;
namespace matriz
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
// vectores f1 = new vectores();
private void button1_Click(object sender, EventArgs e)
{
int[,] matriz;
matriz = new int[50, 50];
int j, i, x, y;
x = int.Parse(textBox1.Text);
y = int.Parse(textBox2.Text);
if (x != y)
MessageBox.Show("\n el " + x + " y " + y + " deven ser iguales \n");
else
for (i = 0; i < x; i++)
{
for (j = 0; j < y; j++)
{
matriz[i, j] = int.Parse(Interaction.InputBox("Dato en i", "Dato en j", "", 50, 50));
}
}
dataGridView1.ColumnCount = x;
dataGridView1.RowCount = y;
for (i = 0; i < x; i++)
{
for (j = 0; j < y; j++)
{
dataGridView1.Rows[i].Cells[j].Value = matriz[i, j].ToString();
} } }
private void button2_Click(object sender, EventArgs e)
{
textBox1.Text = "";
textBox2.Text = "";
}
private void button3_Click(object sender, EventArgs e)
{
Application.Exit();
}
No hay comentarios:
Publicar un comentario
bueno se acepta recomendaciones y criticas positivas y e persona que si sabe de programacion o interesado en aprender ,no cualquiera que esta solo buscando codigos para copy y paste