Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Calendario3
- {
- const int MESES = 12;
- const int SEMANAS = 52;
- const int DIAS = 365;
- const double DIAS_POR_SEMANA = (double) DIAS / (double) SEMANAS;
- const double DIAS_POR_MES = (double) DIAS / (double) MESES;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement