lunes, 21 de septiembre de 2009

PRACTICA 3-3 WINDOWS





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 descuento_de_articulos_de_una_bodeja___Windows
{
public partial class Form1 : Form
{
double codigo, cantidad, precio, total, descuento, pago;
public Form1()
{
codigo = cantidad = precio = total = descuento = pago;
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
codigo = double.Parse(textBox1.Text);
cantidad = double.Parse(textBox2.Text);
precio = double.Parse(textBox3.Text);
if (cantidad > 100)
{
total = cantidad * precio;
descuento = total * 0.40;
pago = total - descuento;
textBox4.Text = "descuento 40%";
}
else
{
if (cantidad >= 25)
{
total = cantidad * precio;
descuento = total * 0.20;
pago = total - descuento;
textBox4.Text = "Descuento 20 %";
}
else
{
if (cantidad >= 10)
{
total = cantidad * precio;
descuento = total * 0.10;
pago = total - descuento;
textBox4.Text = "Descuento 10 %";
}
else
{
total = cantidad * precio;
descuento = 0;
pago = total - descuento;
}
}
}
textBox5.Text = "Su descuentos es = " + descuento.ToString();
textBox6.Text = "Usted paga = " + pago.ToString();
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
textBox4.Clear();
textBox5.Clear();
textBox6.Clear();
}
private void button3_Click(object sender, EventArgs e)
{
Close();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
}
}

No hay comentarios:

Publicar un comentario