fork download
  1. import java.util.*;
  2. import java.time.*;
  3. import java.time.format.*;
  4.  
  5. class Ideone
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. final int year = 2017;
  10.  
  11. for(Month month : Month.values()){
  12.  
  13. LocalDate date = LocalDate.of(year, month, 01);
  14. int numberOfDays = date.lengthOfMonth();
  15. String monthName = month.getDisplayName(TextStyle.FULL, new Locale("pt", "BR"));
  16.  
  17. System.out.println(monthName + " tem " + numberOfDays + " dias.");
  18. }
  19. }
  20. }
Success #stdin #stdout 0.12s 712192KB
stdin
Standard input is empty
stdout
Janeiro tem 31 dias.
Fevereiro tem 28 dias.
Março tem 31 dias.
Abril tem 30 dias.
Maio tem 31 dias.
Junho tem 30 dias.
Julho tem 31 dias.
Agosto tem 31 dias.
Setembro tem 30 dias.
Outubro tem 31 dias.
Novembro tem 30 dias.
Dezembro tem 31 dias.