projet-donnees-reparties/Client/Joueur.java

20 lines
632 B
Java
Raw Normal View History

import java.rmi.*;
import java.io.*;
public class Joueur {
public static void main(String[] args) {
try {
ObjetDeItf de = (ObjetDeItf) Naming.lookup("//localhost:4000/Michel");
System.out.println(de);
int nb1 = de.getRandom();
int nb2 = de.getRandom();
int nb3 = de.getRandom();
int nbCalls = de.getCalls();
System.out.println("Vous avez tiré les valeurs " + nb1 + ", " + nb2 + ", " + nb3 + ". Actuellement il y a " + nbCalls + " lancers de dés.");
} catch (Exception e) {
e.printStackTrace();
}
}
}