jueves, 30 de octubre de 2008

PRACTICA 3

Problema 1
Este programa esta diseñado para darle la bien benida al alumno a la clase de Microsoft Visual C#, esta puede modificarse segun el tipo de mensaje que se requiera.

Este es el 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_3_Windows
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show(" Bienvenido a la practica de Visual en C# " + Textbox1.Text);
}

Progra Ejecutado.


Problema 2
Este programa esta diseñado para calcular el area y el perimetro de un rectangulo, calculando con los valores de LARGO y ANCHO de rectangulo.

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_3_Windows_Problema_2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int h, w;
h = int.Parse(textBox1.Text);
w = int.Parse(textBox2.Text);

int Ar = h * w;
int Pe = 2 * (h + w);

textBox3.Text = Ar.ToString();
textBox4.Text = Pe.ToString();
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
textBox4.Clear();
textBox1.Focus();
}


Progra Ejecutado.


No hay comentarios: