import java.util.Random Random random = new Random() def min = 1 def max = 10 def randomValue = random.nextInt(max + 1 - min) + min; ...
確定! 回上一頁