Guest User

Untitled

a guest
Apr 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. private int dia;
  2. private int mes;
  3. private int ano;
  4.  
  5. public bool GravaData(int d, int m, int a)
  6. {
  7. if ((d > 0 && d <= 31) && (m > 0 && m <= 12) && (ano > 0))
  8. {
  9. dia = d;
  10. mes = m;
  11. ano = a;
  12. return true;
  13. }
  14. else
  15. {
  16. return false;
  17. }
  18. }
Add Comment
Please, Sign In to add comment