CS311_assignment2/src/generic/Statistics.java

14 lines
253 B
Java
Raw Normal View History

2019-08-26 11:41:36 +05:30
package generic;
public class Statistics {
// TODO add your statistics here
// TODO write functions to update statistics
public static void printStatistics(String statFile)
{
// TODO add code here to print statistics in the output file
}
}