package main package main; import java.io.IOException; import java.util.Scanner; import controller.FileController; import controller.StudentController; public class mainClass { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); StudentController studentController = new StudentController(); FileController fileController = new FileController(); out: wh..