Added verbose for mean.
This commit is contained in:
parent
ed3960329d
commit
c37263600a
@ -1,4 +1,5 @@
|
|||||||
import java.lang.Math;
|
import java.lang.Math;
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@ -114,6 +115,18 @@ public class MMMCalc {
|
|||||||
mean = sum / (float)numArray.length;
|
mean = sum / (float)numArray.length;
|
||||||
|
|
||||||
System.out.println("Mean: " + mean);
|
System.out.println("Mean: " + mean);
|
||||||
|
|
||||||
|
if(verbose) {
|
||||||
|
System.out.print("(");
|
||||||
|
for(int i = 0; i < numArray.length; i++) {
|
||||||
|
if(i == numArray.length - 1) {
|
||||||
|
System.out.print(numArray[i] + ")");
|
||||||
|
} else {
|
||||||
|
System.out.print(numArray[i] + " + ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.print(" / " + numArray.length + " = " + mean + "\n\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void calcMedian() {
|
private static void calcMedian() {
|
||||||
|
Loading…
Reference in New Issue
Block a user