Fixed median verbose print.
This commit is contained in:
parent
62d4d703a8
commit
0cac8482b6
@ -144,10 +144,20 @@ public class MMMCalc {
|
|||||||
|
|
||||||
if(verbose) {
|
if(verbose) {
|
||||||
for(int i = 0; i < numArray.length; i++) {
|
for(int i = 0; i < numArray.length; i++) {
|
||||||
if(i == midVar) {
|
if(even) {
|
||||||
System.out.print(">" + numArray[i] + "< ");
|
if(i == midVar - 1) {
|
||||||
|
System.out.print(">" + numArray[i] + " !" + median + "! ");
|
||||||
|
} else if(i == midVar) {
|
||||||
|
System.out.print(numArray[i] + "< ");
|
||||||
|
} else {
|
||||||
|
System.out.print(numArray[i] + " ");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
System.out.print(numArray[i] + " ");
|
if(i == midVar) {
|
||||||
|
System.out.print(">" + numArray[i] + "< ");
|
||||||
|
} else {
|
||||||
|
System.out.print(numArray[i] + " ");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
System.out.print("\n\n");
|
System.out.print("\n\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user