PTA 7-3 学生列表 (20 分) JAVA

该博客主要展示了如何使用Java编程实现一个学生类,包括学号、姓名和成绩属性,以及相关的方法如构造函数、toString、equals和hashCode。在main函数中,创建了一个学生列表,并从命令行读取输入来添加、删除和修改学生信息。最后,按照列表顺序输出所有学生信息。
摘要由CSDN通过智能技术生成

7-3 学生列表 (20 分)
编写学生类,包含学号no、姓名name、成绩score,提供必要的构造函数、toString函数和equals/hashcode函数,其中,toString函数的格式为“no:xxx name:xxx score:xxx”,no参与equals和hashcode的计算 在main函数中构造一个学生列表对象(List),用于存放多个学生对象 从命令行输入多个学生对象,存入列表中 从命令行中读入在列表对象上的操作,具体操作包含: add 添加一个学生(包含学号和学生姓名) delete 删除一个学生(包含学号) set 修改一个学生信息(只修改某学号学生的成绩) 完成操作后按列表的位置顺序输出列表中的学生

import java.util.*;

class Student{
    int no;
    String name;
    int score;

    public Student(int no, String name, int score) {
        this.no = no;
        this.name = name;
        this.score = score;
    }

    public Student(int no) {
        this.no = no;
    }

    @Override
    public String toString() {
        return
                "no:" + no +
                        " name:" + name +
                        " score:" + score;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Student student = (Student) o;
        return no == student.no;
    }

    @Override
    public int hashCode() {
        return Objects.hash(no);
    }

    public void setScore(int score) {
        this.score = score;
    }
}
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        List<Student> ls = new LinkedList<>();

        int n = sc.nextInt();
        for(int i = 1; i <= n; i++){
            int no = sc.nextInt();
            String name = sc.next();
            int score = sc.nextInt();
            ls.add(new Student(no, name, score));
        }

        n = sc.nextInt();
        for(int i = 1; i <= n; i++){
            String op = sc.next();
            if(op.equals("add")){
                int no = sc.nextInt();
                String name = sc.next();
                int score = sc.nextInt();
                ls.add(new Student(no, name, score));
            }
            else if(op.equals("delete")){
                int id = sc.nextInt();
                Student s = new Student(id);
                ls.remove(s);
            }
            else{
                int id = sc.nextInt();
                id = ls.indexOf(new Student(id));
                int score = sc.nextInt();
                ls.get(id).setScore(score);
            }
        }
        for (Student it : ls){
            System.out.println(it.toString());
        }
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值