1234567891011121314151617181920212223242526 |
- package com.sf;
- import java.util.Arrays;
- import java.util.Collections;
- import java.util.Random;
- import java.util.Scanner;
- public class TestWang {
- public static void main(String[] args) {
- Scanner random = new Scanner(System.in);
- int number_of_students = random.nextInt(10);
- String[] student_names = {"小明", "小红", "小刚", "小李", "小张", "小哈", "小小", "小困", "小顾"};
-
- Collections.shuffle(Arrays.asList(student_names));
-
-
-
-
-
- for (int i = 0; i < number_of_students; i++) {
- System.out.println(student_names[i]);
- }
- }
- }
|