Here you can find the source of numDaysInMonth(int month)
public static int numDaysInMonth(int month)
//package com.java2s; //License from project: Apache License public class Main { public static int numDaysInMonth(int month) { switch (month) { case 2://from w ww .j av a 2s .c o m return 28; case 4: case 6: case 9: case 11: return 30; default: return 31; } } }