我遇到异常数组索引越界错误。我声明整数i,j。从用户那里输入他想在数组中插入多少个字符。在“ i”中。现在,在“ j”中,我要求用户插入字符。 现在,必须根据j的值在循环内插入一个“ ch”。
import java.util.Scanner;
class EvenOddInArray
{
public static void main(String arg[]){
int i, j;
System.out.println("Enter no of integer you wanted to input");
Scanner obj1 = new Scanner(System.in);
j = obj1.nextInt();
System.out.println("Enter a char");
Scanner obj = new Scanner(System.in);
char ch[] = new char[j] ;
for(i=0;i<j;i++){
ch[i] = obj.next().charAt(i);
}
}
}
] 2