gpt4 book ai didi

java - 如何将用户输入添加到java中的数组中?

转载 作者:行者123 更新时间:2023-12-02 05:16:25 25 4
gpt4 key购买 nike

public static void main(String[] args) {
Scanner user_input = new Scanner(System.in);
int i;
int n;
String a;
System.out.println("Enter the Class:");
a = user_input.next();
System.out.println("Enter the number of Students:");
n = user_input.nextInt();
for (i= 1; i <= n; i++) {
String g = a + i;
System.out.println(g);
}
}

这是我的程序。它获取类(class)的用户输入并为学生打印卷号。

例如:如果类(class)为 10A,学生人数为 10,则打印一系列 10A1 , 10A2, 10A3 ... 10A10

如何让程序将它们存储为数组中的元素?

例如:

array[0] = 10A1;
array[1] = 10A2;
array[2] = 10A3;

等等

最佳答案

您的代码应如下所示:

public static void main (String args[])
{
Scanner user_input = new Scanner(System.in);
int i;
int n;
String a;
System.out.println("Enter the Class:");
a = user_input.next();
System.out.println("Enter the number of Students:");
n = user_input.nextInt();
String []strings = new String[n]; // Creating an are of string with the given number
for(i= 0; i < n ;){
strings[i] = a + ++i; // Storing strings on to the array !
System.out.println(strings[i-1]);
}
}

关于java - 如何将用户输入添加到java中的数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26913572/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com