Code
/// Name: Afaf Nabeeha
/// Period: 7
/// Program Name: Summing Three Numbers From a File
/// File Name: Summing.java
/// Date Finished: 3/8/2016 public class Summing
import java.io.File;
import java.util.Scanner;
public class Summing {
public static void main(String[] args) throws Exception
{
int a, b, c, sum;
String fileName = "3num.txt";
Scanner keyboard = new Scanner(System.in);
System.out.print("Reading numbers from file \"" + fileName + "\":\n\n>");
Scanner fileIn = new Scanner(new File(fileName));
a = fileIn.nextInt();
b = fileIn.nextInt();
c = fileIn.nextInt();
fileIn.close();
System.out.println("done.");
sum = a + b + c;
System.out.println(a + " + " + b + " + " + c + " = " + sum);
}
}
Picture of the output