/******************************************************************
 * Program Insert assignment number: Insert assignment name
 *
 * Programmer: Insert your name
 *
 * Due Date: Insert due date

 *
 * COMP 110-001        Instructor: Tyler Johnson
 *
 * Description: This program asks the user to enter a line of text
 *				and then performs some interesting operations on the input
 *
 * Input: A line of text containing characters, digits, spaces, puncuation etc.
 *
 * Output: Some interesting info and operations on the input text

 *
 ******************************************************************/
 
 import java.util.Scanner;
 
 public class StringFun  {
 
 	public static void main(String[] args)  {
	
		Scanner keyboard = new Scanner(System.in);
		
		//Ask the user for a line of text
		System.out.println("Enter a line of text.");
		
		String inputString = keyboard.nextLine();
		
		//Display the text back to the user
		System.out.println("You entered");
		System.out.println(inputString);
		
		System.out.println("The length of that string is");
		
		//your code here
		
		System.out.println("That string in uppercase is");
		
		//your code here
		
		System.out.println("The characters at position 0 and 5 are");
		
		//your code here
		
		System.out.println("The substring of that string starting at position 0 and ending at position 5 is");
		
		//your code here
	}
 }