viernes, 16 de septiembre de 2016

Practica 3 "Área de un triángulo"

Práctica 3 "Área de un triángulo"

Objetivo.
Diseñar una aplicación en C# que calcule el área de un triángulo. Implementar los botones Calcular, Limpiar y Salir.



Código.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Area_del_triangulo_bibi
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            double altura, bases, area;
            bases = Convert.ToDouble(TxtBase.Text);
            altura = Convert.ToDouble(TxtAltura.Text);
            area = (bases * altura) / 2;
            txtArea.Text = Convert.ToString(area);

        }

        private void button3_Click(object sender, EventArgs e)
        {
            Close();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            txtArea.Text = "";
            TxtAltura.Text = "";
            TxtBase.Text = "";
        }

        private void txtArea_TextChanged(object sender, EventArgs e)
        {

        }
    }
}

Autor: Eduardo Saavedra Pérez

No hay comentarios:

Publicar un comentario