//Eddie Vale
//Problem 1 Chapter 3
//Part A
//importing the classes
import java.util.Scanner;
import java.io.*;
public class Ch3_PrExercise1
{
public static void main(String[] args) throws FileNotFoundException
{
//Part B and C
Scanner inFile = new Scanner(new FileReader("inData.txt"));
PrintWriter outFile= new PrintWriter("
(
Read more... )