为了账号安全,请及时绑定邮箱和手机立即绑定

我需要在这里导入一些东西吗?

我需要在这里导入一些东西吗?

PIPIONE 2021-07-27 17:01:16
我是 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)这是什么意思?如果有人指导我完成此操作,我将不胜感激。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 125 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信