Assignment #123

Code

    /* jack newsom
period 5
program SimpleFileInput
filename SimpleFileInput
date completed 2/18/16
*/

import java.util.Scanner;
import java.io.File;

public class SimpleFileInput
{
    public static void main( String[] args ) throws Exception {
        
        Scanner fileIn = new Scanner(new File("name.txt"));
        
        String name = fileIn.nextLine();
        
        System.out.println("Using my psychic powers (aided by reading data from the file), I have determined that your name is " + name + ".");

       
    
    }
}  
    

Picture of the output