Aujourd'hui :
Code java : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5 enum Size { SMALL, MEDIUM, LARGE } if (mySize.compareTo(yourSize) >= 0) System.out.println(“You can wear my pants.”);
Demain :
Code java : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5 enum Size { SMALL, MEDIUM, LARGE } if (mySize > yourSize) System.out.println(“You can wear my pants.”);
Partager