 /*****************************************************************
 * Program: Triangle 
 * Programmer: Insert your name here 
 * 
 * Due Date: Insert due date
 * Class: COMP 110-01         Instructor: Tyler Johnson
 *         
 * Pledge: I have neither given nor received unauthorized aid
 * on this program.     (signature on file)
 *
 * Description: This program prints out a triangle of a size
 *				specified by the user
 *
 * Input: Size of the output
 *
 * Output: Triangle of the correct size
 *
 ******************************************************************/

import java.util.Scanner;

public class Triangle  {

	public static void main(String[] args)  {
	
		Scanner keyboard = new Scanner(System.in);
		
		int size;  //size of the triangle
		
		System.out.println("Please enter the size of the triangle as an integer from 1-10.");
		
		size = keyboard.nextInt();
		
		if(size > 10 || size < 1)  {
			System.out.println("Error - Invalid size");
			System.exit(0); //kill the program
		}
	
		//YOUR CODE HERE
	}
}