 /*****************************************************************
 * Lab 3: DaysOfTheWeekSwitch
 * Programmer: Tyler Johnson
 * 
 * Due Date: N/A
 * 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 DaysOfTheWeekSwitch  {

	public static void main(String[] args)  {
	
		Scanner keyboard = new Scanner(System.in);
		
		System.out.println("Please enter the day of the week as a number (1-7).");
		
		int input = keyboard.nextInt();
		
		switch(input)  {
		
			case 1:
				System.out.println("Monday :[");
				break;
				
			case 2:
				System.out.println("Tuesday :\\");
				break;
				
			case 3:
				System.out.println("Wednesday :/");
				break;
				
			case 4:
				System.out.println("Thursday :|");
				break;
				
			case 5:
				System.out.println("Friday :]");
				break;
				
			case 6:
			case 7:
				System.out.println("It's the weekend!");
				break;
				
			default:
				System.out.println("No such day.");
				break;
		}
	}
}