Exception in thread "main" java.lang.Error: Unresolved compilation problem: Unhandled exception type FileNotFoundException
Add throws declaration
or
Surround with try/catch
change
public static void main(String[] args) {
...
Scanner sc = new Scanner(file);
to
public static void main(String[] args) throws FileNotFoundException {
...
Scanner sc = new Scanner(file);