/**
 * Conditionals.java
 * Jeff Ondich, Carleton College, 2014-01-01
 *
 * A tiny illustration of if-statements and console input.
 *
 * This is the Java half of a pair of parallel examples in Python and Java.
 * See conditionals.py.
 */

import java.util.Scanner;

public class Conditionals {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        System.out.print("Number, please: ");
        int number = scanner.nextInt();
        if (number > 100) {
            System.out.format("Gosh, %d is a big number\n", number);
        } else if (number == 3) {
            System.out.format("3 is my lucky number\n");
        } else if (number >= 0) {
            System.out.format("%d is pretty little\n", number);
        } else {
            System.out.format("%d is negative\n", number);
        }
    }
}

