Hint: Steps for developing the program
Don't proceed to the following step until you can "prove" that the current step works.
- Get the program to read the file and print out the first line (using two different variables)
- Get the program to do with for every line (not using a count controlled loop)
- Change it so that instead of printing the English word, it asks the user for the English word and then displays if it was correct
- Add to the display if it is not correct, what the correct English word is.
- Add a counter to count the number of lines in the file (follow example from class). Don't forget to initialize it!
- Add a second counter to count the number of times correct. Don't forget to initialize it!
- After the loop, print out the statistics.