Question
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
public class VOTY {/**
* @param args the command line arguments
*/
public static void main(String[] args) throws FileNotFoundException {
// TODO code application logic here
// decalration
String fileName = "volunteerFile.txt";
int volunteer_num = 25;
int week_num = 52;
// 1D and 2d arrays
String [] names = new String[volunteer_num];
double [][] hours = new double[volunteer_num][week_num];
// read file
Scanner scanner = new Scanner(new File(fileName));...