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 TablaMultiplicar
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//Variables
int numero;
private void button2_Click(object sender, EventArgs e)
{
numero = Convert.ToInt32(textBox1.Text);
while (numero <= 0)
{
MessageBox.Show("Superior a 0 por favor");
return;
}
for (int i = 1; i <= numero; i++)
{
textBox2.Text += " "+"\r\n";
for (int j = 1; j <= numero; j++)
{
textBox2.AppendText((i * j).ToString() + "\t");
}
}
}
private void button1_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}
No hay comentarios:
Publicar un comentario
Nota: solo los miembros de este blog pueden publicar comentarios.