执行此操作时是否会忽略发行问题或其他问题?

int exercise = number.nextInt(4);
int repetition = number.nextInt(30);

if(exercise == 0) {
  exercise = exercise + exercise + 1;

最佳答案

不需要该if子句。如果要确保随机值的“范围”不是以0开头,那么只需执行以下操作:

int exercise = number.nextInt(4) + 1


确保例如在[1,4]中进行锻炼。

09-11 18:43