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 Asteriscos_IV
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int numero, n;
private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void button1_Click(object sender, EventArgs e)
{
n = numero;
for (int r = 1; r <= numero; r++)
{
for (int sp = 1; sp <= r; sp++)
{
textBox1.Text += " ";
}
for (int c = 1; c <= n; c++)
{
textBox1.Text += "*";
}
for (int c = numero - r; c >= 1; c--)
{
textBox1.Text += " *";
}
n--;
textBox1.Text += "\r\n";
}
for (int r = 2; r <= numero; r++)
{
for (int sp = numero - r + 1; sp >= 1; sp--)
{
textBox1.Text += " ";
}
for (int c = 1; c <= r; c++)
{
textBox1.Text += "*";
}
for (int c = r - 1; c >= 1; c--)
{
textBox1.Text += "* ";
}
textBox1.Text += "\r\n";
}
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
numero = int.Parse(textBox2.Text);
}
}
}
No hay comentarios:
Publicar un comentario
Nota: solo los miembros de este blog pueden publicar comentarios.