Visual Basic
Enviado por aoyola • 4 de Abril de 2019 • Tarea • 1.405 Palabras (6 Páginas) • 91 Visitas
Alejandro Oyola Laureano
Prof: Centeno
Ejercicio 15
Abril 4 2019
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 Proyecto15Ventas
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
BackColor = Color.Azure;
}
private void btnCalcular_Click(object sender, EventArgs e)
{
double comision = 0.00;
double venta;
venta = double.Parse(txtVenta.Text);
string tipo = cBCodigo .Text;
if (tipo == "Cod1")
{
if (venta > 500)
{
comision = venta * 0.20;
}
else
{
if (venta > 300)
{
comision = venta * 0.15;
}
else
{
if (venta > 100)
{
comision = venta * 0.10;
}
else
{
comision = 0.05;
}
}
}
}
if (tipo == "Cod2")
{
if (venta > 3000)
{
comision = venta * 0.30;
...