Unused Variables
- I see that towards the beginning of the program, you placed many variables detailing the time control of the game that go unused. I want to know why these are here?
- As well I see that you are checking for 6 separate tokens when reading the file after the user inputs choice A. However, the third, fourth, and fifth tokens go unused in each case. Why are there these statements then?
- I also see that once the recording of the game begins under choice B, there are variables names whiteGames1, whiteGames2, blackGames1, and blackGames2. Are these meant to be for a future rematch option?
- Finally, I see under choice C that the variable storing the user's name is unused. Why is this variable here?
Unclosed files
- You left inFile, inFile2, inFile4, and inFile5 unclosed. Just letting you know.
Using directories in code
- Can you please use a variable to store the directory to a user's file system. That way it will be easier to manipulate and change for different users?
Indentation
- Can you please be more careful about indenting control flow blocks? I know that Java and many other languages don't require proper indentation, but it is much easier to read with proper indentation (I spent like 30 minutes just reindenting everything in my fork).
Unused Variables
Unclosed files
Using directories in code
Indentation