domingo, 7 de diciembre de 2008

Practica 6

Problema 1 en console

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

namespace practica_6_trabajo_1_console
{
class Program
{
static void Main(string[] args)
{
int x, y;
Console.WriteLine("Introdusca un valor entero para x");
Console.Write("X= ");
x = int.Parse(Console.ReadLine());
if (x < 0)

{
y = 3 * x + 6;
}


else

{
y = x * x + 6;
}
Console.WriteLine("\nEl valor de Y = "+y);
Console.ReadLine();

}
}
}



Problema 1 en 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 practica_6_trabajo_1_windowns
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
int x, y;
x = int.Parse(textBox1.Text);
if (x < 0)
{
y = 3 * x + 6;
}
else
{
y = x * x + 6;
}
MessageBox.Show("Y es igual a: " + y);


}
}
}

Problema 2 en console


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

namespace practica_6trabajo_2
{
class Program
{
static void Main(string[] args)
{
string des;
int cp;
double preuni, descuento, total;
Console.WriteLine("Introdusca los sig. valores");
Console.Write("\ndescripcion articulo: ");
des = Console.ReadLine();
Console.Write("\nCantidad pedida: ");
cp = int.Parse(Console.ReadLine());
Console.Write("\nprecio unitario: ");
preuni = double.Parse(Console.ReadLine());
descuento = 0.0;
if (cp > 50)
{
descuento = preuni * 0.15;
}
total = cp * (preuni - descuento);
Console.WriteLine("\n\nDescripcion: "+des+" \n\nCantidad: "+cp+" \n\nPrecio: "+preuni+" \n\nDescuento: "+descuento+" \n\ntotal: "+total);
Console.WriteLine("\n\nArticulo "+des+ " Pedida "+cp+ " Unitario: "+preuni);
Console.ReadLine();

}
}
}


Problema 2 en 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 practica_6_trabajo_2_windows
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
int cp;
double preuni, descuento, total;
cp = int.Parse(textBox2.Text);
preuni=double.Parse(textBox3.Text);
descuento = 0.0;
if (cp > 50)
{
descuento = (preuni*cp)* 0.15;
}
total = (preuni * cp) - descuento;
textBox4.Text = descuento.ToString();
textBox5.Text = total.ToString();


}
}
}




Problema 3 en 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 practica_6_trabajo_3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
double phs, pv, pa, total, descuento1;
int chs, cv, ca;

phs = double.Parse(textBox1.Text);
chs = int.Parse(textBox2.Text);
pv = double.Parse(textBox3.Text);
cv = int.Parse(textBox4.Text);
pa = double.Parse(textBox5.Text);
ca = int.Parse(textBox6.Text);
descuento1 = (phs * chs) * (0.80) + (pv * cv) * (0.85) + (pa * ca);
total = descuento1*0.93;
textBox7.Text = total.ToString();



}

private void button2_Click(object sender, EventArgs e)
{
double phs, pv, pa, total, descuento1;
int chs, cv, ca;

phs = double.Parse(textBox1.Text);
chs = int.Parse(textBox2.Text);
pv = double.Parse(textBox3.Text);
cv = int.Parse(textBox4.Text);
pa = double.Parse(textBox5.Text);
ca = int.Parse(textBox6.Text);
descuento1 = (phs * chs) * (0.80) + (pv * cv) * (0.85) + (pa * ca);
total = descuento1;
textBox7.Text = total.ToString();
}
}
}



Problema 4 en console

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

namespace practica_6trabajo_4
{
class Program
{
static void Main(string[] args)
{
double cal1, cal2, cal3, promedio;
string nombre;
Console.WriteLine("NOMBRE DEL ALUMNO");
nombre = Console.ReadLine();
Console.WriteLine("\n\ncalificacion 1:");
cal1 = double.Parse(Console.ReadLine());
Console.WriteLine("\n\nCalificacion 2:");
cal2 = double.Parse(Console.ReadLine());
Console.WriteLine("\nCalificacion 3:");
cal3 = double.Parse(Console.ReadLine());
promedio = (cal1 + cal2 + cal3) / 3;
if (promedio <= 70)
{
Console.WriteLine(nombre + " NO Acredito");
}
else
{
Console.WriteLine(nombre + " Acredito");
}


Console.ReadLine();

}
}
}



Problema 4 en 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 practica6_trabajo_4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
string nombre;
double cal1, cal2, cal3, prom;
nombre = textBox1.Text;
cal1 = double.Parse(textBox2.Text);
cal2 = double.Parse(textBox3.Text);
cal3 = double.Parse(textBox4.Text);
prom=(cal1+cal2+cal3)/3;
if (prom <= 70)
{
MessageBox.Show(nombre + " NO ACREDITADO");
}
else
{
MessageBox.Show(nombre + " ACREDITADO");
}
}
}
}

No hay comentarios: