!146 无符号算数验证码两个随机数生成相同概率较高问题
Merge pull request !146 from tmjAccount/dev
This commit is contained in:
commit
77756eb08d
@ -41,14 +41,14 @@ public class UnsignedMathGenerator implements CodeGenerator {
|
|||||||
@Override
|
@Override
|
||||||
public String generate() {
|
public String generate() {
|
||||||
final int limit = getLimit();
|
final int limit = getLimit();
|
||||||
int min = RandomUtil.randomInt(limit);
|
int a = RandomUtil.randomInt(limit);
|
||||||
int max = RandomUtil.randomInt(min, limit);
|
int b = RandomUtil.randomInt(limit);
|
||||||
String number1 = Integer.toString(max);
|
String max = Integer.toString(Math.max(a,b));
|
||||||
String number2 = Integer.toString(min);
|
String min = Integer.toString(Math.min(a,b));
|
||||||
number1 = StringUtils.rightPad(number1, this.numberLength, CharUtil.SPACE);
|
max = StringUtils.rightPad(max, this.numberLength, CharUtil.SPACE);
|
||||||
number2 = StringUtils.rightPad(number2, this.numberLength, CharUtil.SPACE);
|
min = StringUtils.rightPad(min, this.numberLength, CharUtil.SPACE);
|
||||||
|
|
||||||
return number1 + RandomUtil.randomChar(OPERATORS) + number2 + '=';
|
return max + RandomUtil.randomChar(OPERATORS) + min + '=';
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user