黑马程序员技术交流社区
标题:
获取10个1至20的随机数,要求随机数不能重复的代码有没有错
[打印本页]
作者:
天人之珠
时间:
2015-7-21 22:46
标题:
获取10个1至20的随机数,要求随机数不能重复的代码有没有错
class SuiJiShu {
public static void main(String[] args) {
int countine = 0;
int[] arr = new int[10];
w: while (countine < 10) {
int n = (int) (Math.random() * 100 );
w1: while (n > 0 && n <= 20) {
i: if (countine != 0) {
f: for (int y = 0; y < countine; y++) {
i1: if (arr[y] == n) {
continue w;
} else {
arr[countine] = n;
// countine++;
// continue;
}
}
} else {
arr[0] = n;
}
System.out.println(arr[countine]);
countine++;
break;
}
}
}
}
作者:
嘎路的米
时间:
2015-7-21 23:20
给你个更简单的写法
public class Demo {
public static void main(String[] args) {
int count = 0;
int[] arr = new int[10];
w: while (count < 10) {
int n = (int) (Math.random() * 20 + 1);
for (int i = 0; i < 10; i++) {
if (arr[i] == n) {
continue w;
}
}
arr[count++] = n;
System.out.println(n);
}
}
}
作者:
加多宝
时间:
2015-7-23 09:33
长知识了
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2