20090924

PRACTICA 2.2 CALCULO DISTANCIA EN MILLAS (visual)



CODIGO EN VISUAL PARA LA PRACTICA 2.2 DISTANCIA EN MILLAS. ACONTINUACION.


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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
int distancia, tiempo, velocidad;

public Form1()
{
InitializeComponent();



}

private void button1_Click(object sender, EventArgs e)
{
velocidad = int.Parse(textBox1.Text);
tiempo = int.Parse(textBox2.Text);
distancia = velocidad * tiempo;
textBox3.Text = ("la distancia total en millas es ") + distancia.ToString();

}

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


}

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

No hay comentarios:

Publicar un comentario