I\'m new to using Java, but I have some previous experience with C#. The issue I\'m having comes with reading user input from console.
I\'m running into the \"java.u
You need to remove the scanner closing lines: scan.close();
scan.close();
It happened to me before and that was the reason.