viernes, 31 de octubre de 2008

PRACTICA 4

PROBLEMA 1
Elaborar un programa que lea la cantidad de Dolar a comprar y el tipo de cambio en pesos(Costo de un Dolar en Pesos). Calcular e Impromir la cantidad de Pesos a pagar por la cantidad de Dolares indicada.

Digrama de Flujo.

Codigo C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Practica_4_Problema_1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Calcular_Click(object sender, EventArgs e)
{
double pesos, dolar, cantD;
pesos = double.Parse(textBox2.Text);
dolar = double.Parse(textBox1.Text);
cantD = pesos / dolar;
textBox3.Text = cantD.ToString();
}
private void CLEAR_Click(object sender, EventArgs e)
{
textBox2.Clear();
textBox3.Clear();
}
Programa Ejecutado.


PROBLEMA 2
Elabore un programa que lea una temperatura en grados ºC (centigrados) y obtenga he imprima la temperatura en ºF (fahrenheit).

F = 9.0 / 5.0 * C + 32 ............. C = ( F - 32) * 5.0 / 9.0

Diagrama de Flujo.


Codigo C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Practica_4_Problema_2
{
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 C, F;
C = double.Parse(textBox1.Text);
F = (9.0 / 5.0) * C + 32.0;
textBox2.Text=F.ToString();
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
}

Programa Ejecundo.


PROBLEMA 3

Elabora un programa que lea un Numero de PIES y calcule he imprima su equivalente en Yardas, Pulgadas, Centimetros y Metros.

. . . . . . . . . . . 1 pie = 12 pulgadas . . . . . . . .1 metro = 100 cm.

. . . . . . . . . . . 1 yarda = 3 pies . . . . . . . . . . 1 cm = x plg. * 2.54 / 100

. . . . . . . . . . . 1 plg = 2.54

Codigo C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Practica_4_Problema_3_Windows
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void CALCULAR_Click(object sender, EventArgs e)
{
double pies, yardas, pulgadas, cm, metros, cmplg, mpie;
pies = double.Parse(textBox1.Text);
mpie = pies;
yardas = mpie / 3.0;
pulgadas = mpie * 12.0;
cmplg = pulgadas;
cm = cmplg * 2.54;
metros = cm / 100;
textBox2.Text = yardas.ToString();
textBox3.Text = pulgadas.ToString();
textBox4.Text = cm.ToString();
textBox5.Text = metros.ToString();
}
private void CLEAR1_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
textBox4.Clear();
textBox5.Clear();
textBox1.Focus();
}

Programa Ejecutado



No hay comentarios: