lunes, 28 de septiembre de 2009

PRACTICA 3-4 CONSOLA Y WINDOWS


PRACTICA 3-4 CONSOLA

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace practica3_4_console
{
class Program
{
static void Main(string[] args)
{

double cantidad, precio, total, descuento, pago;
Console.WriteLine("introduzca el la cantidad comprada de articulo");
cantidad = int.Parse(Console.ReadLine());
Console.WriteLine("introduzca el precio unitario de articulo");
precio = int.Parse(Console.ReadLine());
if (cantidad > 100)
{
Console.WriteLine("descuento 40%");
total = cantidad * precio;
descuento = total * 0.40;
pago = total - descuento;
}
else
{
if(cantidad>=25)
{
Console.WriteLine("descuento 20%");
total=cantidad*precio;
descuento=total*0.20;
pago = total - descuento;
}
else
if (cantidad>=10)
{
Console.WriteLine("descuento 10%");
total=cantidad*0.10;
descuento = total * 0.10;
pago=total-descuento;
}
else
{
Console.WriteLine("no hay descuento");
total=cantidad*precio;
descuento=0;
pago=total-descuento;
}
}
Console.WriteLine("total={0} in descuento={1} in pago={2}", total, descuento, pago);
Console.ReadKey();
}
}
}






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 Practica_3._3_Visual
{
public partial class Form1 : Form
{
double cantidad, precio, total, descuento, pago;
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
cantidad = double.Parse(textBox1.Text);
precio = double.Parse(textBox2.Text);
if (cantidad > 100)
{
Console.WriteLine("Descuento 40%");
total = cantidad * precio;
descuento = total * 0.40;
pago = total - descuento;
}
else
{
if (cantidad >= 25)
{
Console.WriteLine("Descuento 20%");
total = cantidad * precio;
descuento = total * 0.20;
pago = total - descuento;
}
else
{
if (cantidad >= 10)
{
Console.WriteLine("Descuento 10%");
total = cantidad * precio;
descuento = total * 0.10;
pago = total - descuento;
}
else
{
Console.WriteLine("No hay descuento");
total = cantidad * precio;
descuento = 0;
pago = total - descuento;
}
}
}
textBox3.Text = total.ToString();
textBox4.Text = descuento.ToString();
textBox5.Text = pago.ToString();
}

private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
textBox4.Clear();
textBox5.Clear();
}

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

private void Form1_Load(object sender, EventArgs e)
{

}
}
}

No hay comentarios:

Publicar un comentario