Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public String toString() {
  2.  
  3. return this.jour+"/"+this.mois+"/"+this.annee;
  4. }
  5.  
  6. public Date suivant() {
  7. if (this.jour == dernierJourDuMois() && this.mois == 12){
  8. return new Date(01, 01, this.annee++);
  9. }
  10. if (this.jour == dernierJourDuMois()) {
  11. return new Date(01, this.mois++, this.annee);
  12. }
  13.  
  14. return new Date(this.jour++, this.mois, this.annee);
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement