package demo;

import java.util.Random;

/**
 * 随机不重复的三个人
 * 
 * @author Weirdo-world
 *
 */
public class Demo8 {
    public static void main(String[] args) {
        String[] s = { “张三”, “李四”, “王五”, “赵虎”, “周天” };
        Random r = new Random();
        String[] st = { “”, “”, “” };

        for (int i = 0; i < 3; i++) {
            String str = s[r.nextInt(5)];
            for (int j = 0; j < st.length; j++) {
                while (str.equals(st[j])) {
                    j = 0;
                    str = s[r.nextInt(5)];
                }
            }
            st[i] = str;
        }
        for (int i = 0; i < st.length; i++) {
            System.out.println(st[i]);
        }
    }
}

版权声明:本文为Weirdo-world原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/Weirdo-world/p/9330729.html