我是 Java 的初学者,我正在创建一个程序,该程序在接受用户 30 次输入后将学生的姓名和权重存储在两个不同的数组中。这是我的代码:import java.util.Scanner;public class bodymass { public static void main(String[] args) { Scanner scan=new Scanner(System.in); String[] studentName= new String[30]; System.out.println("Please enter the Names of 30 students"); // This "i" is your counter. for (int i=0; i< studentName.length; i++) { studentName[i]= scan.nextLine();} System.out.println("Please enter the Weight of 30 students"); Scanner scan1= new Scanner(System.in); int[] studentWeight= new int[30]; for(int i=0; i<studentWeight.length; i++) { studentWeight[i]= scan.nextInt();} } }但是,当我调试它时,我收到消息:线程“main”中的异常 java.lang.Error:未解决的编译问题:在 bodymass.main(bodymass.java:5)这是什么意思?如果有人指导我完成此操作,我将不胜感激。
添加回答
举报
0/150
提交
取消