function exact = p02_exact ( ) %*****************************************************************************80 % %% P02_EXACT returns the exact integral for problem 2. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 17 January 2009 % % Author: % % John Burkardt % % Parameters: % % Output, real EXACT, the value of the integral. % exact = 2.0 * pi * log ( 2.0 ); return end