Can anyone help me out with my code below? I have been working on this for hours and can't seem to get my output to write out to a file no matter what I do. I'm a high school student and asked my teacher for help, but what she sent me didn't help and I'm now at a complete loss. I'm taking this course independently on my own so hoping someone from the stackoverflow family could provide me some pointers? It's not from lack of trying on my part. I'm just at a loss. Thank you in advance!!
/**
*
*/
package distanceTraveledReport;
import java.util.Scanner;
import java.io.*;
/**
* @author Jerin
*
*/
public class DistanceTraveledReport {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
//prints out name and project I am working on
System.out.println("Jerin Anderson, This is my Distance Traveled Report");
//create scanner
Scanner scanner = new Scanner(System.in);
double vehicleSpeed = -1; //to hold the speed from the vehicle
int hoursTraveled = 0; //to hold the hours traveled by the vehicle
double distanceTraveled; //to hold the distance traveled for each hour
//while loop, inputs validation
while ( vehicleSpeed < 0 )
{
System.out.println("Enter the speed of the vehicle (in miles-per-hour)" );
vehicleSpeed = scanner.nextDouble();
}
while (hoursTraveled < 1)
{
System.out.println("Enter the number of hours traveled by the vehicle" );
hoursTraveled = scanner.nextInt();
}
//heading at the top and lines to separate table
System.out.println(" Hour\t Distance Traveled");
System.out.println("---------------------------");
{
//write the table of distances
distanceTraveled = 1;
while (distanceTraveled <= hoursTraveled)
{
//Display the distance for this period.
System.out.println(distanceTraveled + "\t\t" + distanceTraveled * vehicleSpeed);
//Increment period
distanceTraveled++;
}
//Close the file.
System.out.close();
System.out.println("Report written to DistanceReport.txt");
}
}
}