package Moth.JUL.JUL04; import java.util.Scanner; //有12个人,循环随机提问一个人,直到提问完所有人为止,要求不能重复提问到一个人 public class Random { static Scanner input = new Scanner(System.in); public static void main(String[] args) { String names[] = { "吖一", "吖二", "吖三", "吖四", "吖五", "吖六", "吖七", "吖八", "吖九", "吖十", "吖十一", "吖十二" }; System.out.println("开始随机提问!"); String st = ""; // 循环条件 int index = -1; // 标识提问到这个人的下标 do { // 用int类型的 num 来接收生成的随机数 int num = (int) (Math.random() * 12 + 0); if (names[num] != null) { System.out.println("提问开始,请" + names[num] + "来回答问题!"); // 提问完删除这个人 index = num; names[index] = null; System.out.println("是否继续提问(n/y):"); st = input.next(); // 遍历数组元素,如果数组元素全为null 则boo的为false boolean boo = false; for (int i = 0; i < names.length; i++) { if (names[i] != null) { boo = true; } } if (!boo) { System.out.println("已经提问完所有人!"); break; } } } while ("y".equals(st)); System.out.println("程序结束!"); } }
原文地址:https://www.cnblogs.com/zeng1997/p/11130303.html
时间: 2024-11-09 09:41:26