function value = year_length_months_julian ( y ) %*****************************************************************************80 % %% YEAR_LENGTH_MONTHS_JULIAN returns the number of months in a Julian year. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 19 June 2012 % % Author: % % John Burkardt % % Parameters: % % Input, integer Y, the year to be checked. % % Output, integer VALUE, the number of % months in the year. % value = 12; return end