作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我是一名优秀的程序员,十分优秀!