A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

天人之珠

中级黑马

  • 黑马币:

  • 帖子:

  • 精华:



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;
                        }
                }
        }
}

2 个回复

倒序浏览
给你个更简单的写法


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);
                }
        }
}
回复 使用道具 举报
长知识了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马