Guest User

Untitled

a guest
Apr 26th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. while (term1.monat!=term2.monat)
  2. {
  3. if (term1.monat==13)
  4. {
  5. term1.jahr=term1.jahr+1;
  6. term1.monat=1;
  7. }
  8. if (term1.monat==2)
  9. {
  10. abstand=abstand+28;
  11. term1.monat=term1.monat+1;
  12. }
  13. if ((term1.monat==1)||(term1.monat==3)||(term1.monat==5)||(term1.monat==7)||(term1.monat==8)||(term1.monat==10)||(term1.monat==12))
  14. {
  15. abstand=abstand+31;
  16. term1.monat=term1.monat+1;
  17. }
  18. if ((term1.monat==4)||(term1.monat==6)||(term1.monat==9)||(term1.monat==11))
  19. {
  20. abstand=abstand+30;
  21. term1.monat=term1.monat+1;
  22. }
  23. }
Add Comment
Please, Sign In to add comment