// demonstrate the declaration of constants public class Constants { final static int max = 2147483647;// the largest Java integer. final static int secondsInYear = 365*24*60*60; // secs in nonleapyear //final static float velocity = 1.86E5; //velocity of light //final static float nano = 9.82080E-1; public static void main(String args[]) { } }