Advertisement
Fhernd

Calendario3.cs

Nov 14th, 2017
1,314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. class Calendario3
  2. {
  3.     const int MESES = 12;
  4.     const int SEMANAS = 52;
  5.     const int DIAS = 365;
  6.    
  7.     const double DIAS_POR_SEMANA = (double) DIAS / (double) SEMANAS;
  8.     const double DIAS_POR_MES = (double) DIAS / (double) MESES;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement