-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cliente.java
84 lines (77 loc) · 2.77 KB
/
Cliente.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import java.rmi.NotBoundException;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.util.Scanner;
public class Cliente {
private static final String IP = "localhost"; // Puedes cambiar a localhost
private static final int PUERTO = 1100; //Si cambias aquí el puerto, recuerda cambiarlo en el servidor
public static void main(String[] args) throws RemoteException, NotBoundException {
Registry registry = LocateRegistry.getRegistry(IP, PUERTO);
Interfaz interfaz = (Interfaz) registry.lookup("Calculadora"); //Buscar en el registro...
Scanner sc = new Scanner(System.in);
int eleccion;
float numero1, numero2 = 0, numero3 = 0, resultado = 0;
String menu = "\n\n------------------\n\n[-1] => Salir\n[0] => Sumar\n[1] => Restar\n[2] => Multiplicar\n[3] => Dividir\n[4] => Raiz Cuadrada\nElige: ";
do {
System.out.println(menu);
try {
eleccion = Integer.parseInt(sc.nextLine());
} catch (NumberFormatException e) {
eleccion = -1;
}
if(eleccion != -1){
if (eleccion==4){
System.out.println("Ingresa el número a hacer la raíz cuadrada");
try {
numero1=Float.parseFloat(sc.nextLine());
}catch (NumberFormatException e){
numero1=0;
}
}
else {
System.out.println("Ingresa el número 1: ");
try{
numero1 = Float.parseFloat(sc.nextLine());
}catch(NumberFormatException e){
numero1 = 0;
}
System.out.println("Ingresa el número 2: ");
try{
numero2 = Float.parseFloat(sc.nextLine());
}catch(NumberFormatException e){
numero2 = 0;
}
if (eleccion==0 || eleccion==2){
System.out.println("Ingresa el número 3: ");
try{
numero3 = Float.parseFloat(sc.nextLine());
}catch(NumberFormatException e){
numero3 = 0;
}
}
}
switch (eleccion) {
case 0:
resultado = interfaz.sumar(numero1, numero2,numero3);
break;
case 1:
resultado = interfaz.restar(numero1,numero2);
break;
case 2:
resultado = interfaz.multiplicar(numero1, numero1,numero3);
break;
case 3:
resultado = interfaz.dividir(numero1, numero2);
break;
case 4:
resultado = interfaz.raiz(numero1);
break;
}
System.out.println("Resultado => " + String.valueOf(resultado));
System.out.println("Presiona ENTER para continuar");
sc.nextLine();
}
} while (eleccion != -1);
}
}