viernes, 11 de septiembre de 2009

PRACTICA2-2 CONSOLA


PRACTICA 2-2 CONSOLA
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace practica2._2_consola
{
class Program
{
static void Main(string[] args)
{
int distancia, vel, tiempo;
Console.WriteLine(" PROGRAMA PARA CALCULARLA DISTANCIA EN MILLAS");
Console.WriteLine("INTRODUCE EL VALOR ENTERO QUE REPRESENTE LA VELOCIDAD DEL VIAJE");
vel = int.Parse(Console.ReadLine());
Console.WriteLine(" INTRODUCE EL VALOR ENTERO QUE REPRESENTE EL TIEMPO TRANSCURRIDO DEL VIAJE");
tiempo = int.Parse(Console.ReadLine());
distancia = vel * tiempo;
Console.WriteLine("LA DISTANCIA TOTAL ES {0} MILLAS", distancia);
Console.ReadKey();
}
}
}

PRACTIC 2-2 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 PRACTICA2_2_WINDOWS
{
public partial class Form1 : Form
{
int VEL, TIEMPO, DISTANCIA;

public Form1()
{
VEL = TIEMPO = DISTANCIA = 0;
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
VEL = int.Parse(textBox1.Text);
TIEMPO = int.Parse(textBox2.Text);
DISTANCIA = VEL * TIEMPO;
textBox3.Text = 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();
}

private void Form1_Load(object sender, EventArgs e)
{

}
}
}

No hay comentarios:

Publicar un comentario