Asteriscos - III





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_III
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        int numero, espacio;

        private void button2_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        private void textBox2_TextChanged(object sender, EventArgs e)
        {
            numero = int.Parse(textBox2.Text);
        }

        private void button1_Click(object sender, EventArgs e)
        {              
                espacio = numero - 1;

                for (int i = 1; i <= numero; i++)
                {
                    for (espacio = 1; espacio <= (numero - i); espacio++)
                    {
                        textBox1.Text += "   ";
                    }
                    for (int j = 1; j <= i; j++)
                    {
                        textBox1.Text += "  *";
                    }



                    for (int k = (i - 1); k >= 1; k--)
                    {
                        textBox1.Text += "  *";
                    }
                    textBox1.Text += "\r\n";
                }

            }
        }
    }


No hay comentarios:

Publicar un comentario

Nota: solo los miembros de este blog pueden publicar comentarios.