50个写不出来,只写了5个,你参考下吧
-
- public class Noname1 {
- public static void main(String args[]) {
- java.util.HashSet<Integer> hs = new java.util.HashSet<Integer>();
- while (true) {
- int a = (int)(Math.random() * 10);
- if(a >= 1 && a <= 10) {
- hs.add(a);
- }
- if (hs.size() == 5) {
- break;
- }
- }
- System.out.println(hs);
- }
- }
复制代码
|