 /*****************************************************************
 * Lab 3: DaysOfTheWeekIf
 * Programmer: Insert your name
 * 
 * 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 asks the user to input the day of the
 *				week as a number from 1-7
 *
 * Input: Day of the week (1-7)
 *
 * Output: A message depending on the day of the week
 *
 ******************************************************************/


import java.util.Scanner;

public class DaysOfTheWeekIf  {

	public static void main(String[] args)  {
	
		Scanner keyboard = new Scanner(System.in);
		
		//ask user for the day of the week
		System.out.println("Please enter the day of the week as a number (1-7).");
		
		int input = keyboard.nextInt();
		
		//print out a message depending on the day of the week
	}
}