ayuda para realizar una calculadora
necesito saber como ingresar letras y numeros en un programa de calculadora por favor agradeceria mucho su ayuda.
usa
import java.io.*;
usa el buffer reader, esto:
claro pero modificale el tipo de valor, en fin no es tan dificil
public static int leercant() {
int valor;
try {
BufferedReader br = new BufferedReader(new InputStreamReader(
System.in));
valor = Integer.parseInt(br.readLine());
return valor;
} catch (IOException e) {
return 1;
}
}
import java.io.*;
usa el buffer reader, esto:
claro pero modificale el tipo de valor, en fin no es tan dificil
public static int leercant() {
int valor;
try {
BufferedReader br = new BufferedReader(new InputStreamReader(
System.in));
valor = Integer.parseInt(br.readLine());
return valor;
} catch (IOException e) {
return 1;
}
}