我必须打印一个从1-15,16-30开始的宾果板,依此类推。我打印出了电路板,但我不断重复编号。在我的显示方法中,我似乎无法确定为什么重复数字的if语句不起作用。我也是这个网站的新手,但如果有一些不清楚的地方,我会回复他们。
public class BingoArraysAssignment {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int[][] board1 = new int[5][5];
int[][] board2 = new int[5][5];
int[][] board3 = new int[5][5];
display(board1);
//display2(board3);
//display(board2);
}
public static void display(int[][] board1) {
//int[][] board1 = new int[5][5];
int z = 1, v = 15, y, counter = 0;
for (int i = 0; i <= 4; i++) {
for (int j = 0; j <= 4; j++) {
//counter++;
y = (int) (Math.random() * v + z);
if (board1[i][j] == y) {
j--;
set(board1[i][j], 0);
}
if (board1[i][j] == 0) {
board1[i][j] = y;
System.out.print("|" + board1[i][j]);
//break;
}
}
z = z + 15;
v = v + 15;
System.out.println(" ");
}
}
}
答案 0 :(得分:0)
随机数可以重复。您必须创建一个包含25个数字的随机序列并使用它:
List<Integer> numbers = new List();
list.add(...);
Collections.shuffle(numbers);
Iterrator<Integer> numberItr = list.iterrator();
.....
y = numberItr.next();
答案 1 :(得分:0)
不要使用Math.Random()
,做宾果在现实生活中所做的事情。创建一个包含所需数字的列表,并从列表中随机提取一个数字。
下次从中提取时,您将无法获得相同的值。
答案 2 :(得分:0)
创建一个包含数字1到75的列表。从1-15中随机选择5,从16-30中随机选择5,依此类推...然后从列表中删除您选择的数字。这样你就不会两次获得任何数字。
这是一个例子
//array need numbers from 1 to 15(Can be populated with a loop)
int[] colm = { 1, 2, 3, 4, 5, 14, 15}; //Enter 1 to 15
int[] colm2 = {16,17,18,19,20,21,22,30};//...16 to 30
int[][] board = new int[5][5];
//...
List l = new ArrayList();
for(int i: colm)
l.add(i);
Collections.shuffle(l);
for (int i = 0; i < 5; i++)
for (int j = 0; j < 5; j++)
if(i=0) board[i][j] = colm1[j]
if(i=1) board[i][j] = colm2[j]
//...
}
}