Merge pull request #324 from cntsw/patch-1

纠正拼写错误
This commit is contained in:
Joe
2019-11-24 01:38:39 -06:00
committed by GitHub

View File

@@ -54,7 +54,7 @@ public class ImperativeRandoms {
Random rand = new Random(47);
SortedSet<Integer> rints = new TreeSet<>();
while(rints.size() < 7) {
int r = rand.nextint(20);
int r = rand.nextInt(20);
if(r < 5) continue;
rints.add(r);
}