Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. boolean isLeapYear(){
  2. if(this.jahr % 4 == 0){
  3. if(this.jahr % 100 == 0){
  4. if(this.jahr % 400 == 0){
  5. return true;
  6. }
  7. } else {return true;
  8. }
  9. }
  10. else {
  11. return false;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement