Assignment 128: Summing Several Numbers

Code

  ///Name: Ryan McAteer
  ///Period: 5
  ///Project Name: SeveralNum
  ///File Name: Assignment128.java
  ///Date: 5/25/2016
    
import java.io.File;
import java.util.Scanner;
import java.util.InputMismatchException;

public class Assignment128 {

    public static void main(String[] args) throws Exception {

        int sum = 0;
        String fileName = "";
        Scanner keyboard = new Scanner(System.in);

        while (!fileName.equals("exit"))
        {
            System.out.print("Which file would you like to read from?\n>");
            fileName = keyboard.next();

            if (!fileName.equals("exit"))
            {
                System.out.print("Reading numbers from file \"" + fileName + "\":\n\n>");

                Scanner fileIn = new Scanner(new File(fileName));

                while(fileIn.hasNext())
                {
                    try {
                        int temp = fileIn.nextInt();
                        System.out.print(" " + temp);
                        sum += temp;
                    }
                    catch (InputMismatchException e){};
                }

                fileIn.close();

                System.out.println("\nSum is " + sum);
            }
        }
    }
}






    

Picture of the output

This Should Work