如何制作将用户输入存储到数组列表中的程序



我正在制作一个程序,要求用户的姓名和ID。这两个输入应存储到数组列表中,并将其显示给用户。

用户输入他/她的信息后,程序将随机提出我创建的10个多项选择问题。他们的答案将存储在数组列表中并显示用户。

如何使用Java进行此操作?

Full name:
ID: 
How many stars is there in the USA flag?
A. 50
B. 25
C.400
D. 1
Answer:

(该问题将在代码中添加。它将随机选择问题。(

import java.util.ArrayList;
import java.util.Scanner;
public class AAA {
    public static void main(String[] args) {
        ArrayList<String> name = new ArrayList<String>();
        ArrayList<Integer> phone = new ArrayList<Integer>();
        Scanner sc = new Scanner(System.in);
        while (true) {
            System.out.println("Please enter your name: ");
            name.add(sc.next());
            System.out.println("Please enter your ID: ");
            phone.add(sc.nextInt());
        }
    }
}

java提供了一个名为"随机创建对象的对象"的类,并使其产生随机整数值,其中最大数字是arraylist

的长度

相关内容

  • 没有找到相关文章

最新更新