Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package exo1;
- public class Main {
- public static void main(String[] args) {
- Client myClient = new Client("Toto");
- System.out.println(
- "ID : " + myClient.getIdClient() +
- " Nom : " + myClient.getNom() +
- " Prenom : " + myClient.getPrenom() +
- " Societe :" + myClient.getSociete() +
- " actif : " + myClient.isActif());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement