Advertisement
Keodedad

Untitled

Oct 15th, 2020
1,987
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package exo1;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         Client myClient = new Client("Toto");
  8.  
  9.         System.out.println(
  10.                 "ID : " + myClient.getIdClient() +
  11.                         " Nom : " + myClient.getNom() +
  12.                         " Prenom : " + myClient.getPrenom() +
  13.                         " Societe :" + myClient.getSociete() +
  14.                         " actif : " + myClient.isActif());
  15.     }
  16.  
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement