//为什么从输入第二个值就崩了?正确的赋值代码是怎样的?
import java.util.Scanner;
public class ArrayDemo2 {
public static void main(String[] args) {
char[] ch = new char[10];
for (int i = 0; i < 10; i++){
Scanner sc = new Scanner(System.in);
System.out.println("请输入第"+(i+1)+"个字符");
String str = sc.nextLine();
ch[i] = str.charAt(i);
System.out.print(ch);
}
}
}
添加回答
举报
0/150
提交
取消