bugfix: now prints max number entered, not max-1

This commit is contained in:
2020-06-05 13:43:05 -05:00
parent 02f551cf0c
commit b7452d22be

View File

@@ -21,7 +21,7 @@ public class RandomNumberFileMaker {
filename=f;
count=c;
min=m;
max=M;
max=M+1;
}
public void writeFile(){