Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/11/2011, 13:56
Avatar de JxDarkAngel
JxDarkAngel
 
Fecha de Ingreso: septiembre-2009
Mensajes: 82
Antigüedad: 15 años, 3 meses
Puntos: 2
Respuesta: Mini Calculadora (Suma) - ¿Cómo separar y almacenar los 2 valores a sumar?

te voy a coloar el Codigo en C#, espero te sirva para poder pasarlo a Java

double Valor1=0;
double Valor2=0;

//Evento click del boton
private void Button1_Click(object sender, evenArgs e)
{
if(Button1.Text=="+")
{
Valor1=double.Parse(txtCaja.Text);
txtCaja.Text="";
Button1.Text= "=";
}
else
{
Valor2=double.Parse(txtCaja.Text);
txtResultado.Text= (Valor1 + Valor2 ).ToString();
txtCaja.Text="";
Button1.Text= "+";
}
}

Última edición por JxDarkAngel; 10/11/2011 a las 13:58 Razón: faltaba codigo