Computer Science 225
Advanced Programming

Spring 2017, Siena College

BigAndLittle BlueJ Project

Click here to download a BlueJ project for BigAndLittle.


BigAndLittle Source Code

The Java source code for BigAndLittle is below. Click on a file name to download it.


BigAndLittle.java


/**
 * Datatype min/max constants.
 * 
 * @author Jim Teresco
 */

public class BigAndLittle
{

    public static void main(String args[]) 
    {
        System.out.println("int min " + Integer.MIN_VALUE);
        System.out.println("int max " + Integer.MAX_VALUE);
        
        // check out all the constants for Double:
        // https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html
    }

}