public class MaxValues
{
public static void main ( String args[] )
{
// this loop will alternate between positive and negative values
// demonstrating the "clock" effect of primitive variables.
// You can also try a "byte" in place of "short" if you want to test your vision
for( short ctr = 0; ctr < 10000000; ctr++)
{
System.out.println( ctr );
}
}
} // end class MaxValues