从键盘输入若干个学生成绩,计算出平均成绩。

这篇博客介绍了如何使用Java编程处理学生成绩,包括计算平均分的代码示例。同时,展示了如何设计和实现公交类(Bus)的构造方法和方法,以及创建公司雇员抽象类(Employee)及其子类SalesEmployee和BasePlusSalesEmployee。最后,给出了一个水果库存管理的程序示例,用于展示Map数据结构的使用。
摘要由CSDN通过智能技术生成

while(score>=0){
            num++;
            sum+=score;
            score=in.nextInt();
        }
        System.out.printf("学生总数为"+num+",平均分为"+sum/num);

根据封装的知识,编写Bus类的构造方法和方法

class Bus{
    private String license;
    private String brand;
    public Bus(String license, String brand) {
        if(license.length()!=8){
            this.license="无";
        }else {
            this.license = license;
        }
        this.brand = brand;
    }
    public Bus() {
    }

    public String getLicense() {
        return license;
    }

    public void setLicense(String license) {
        if(license.length()!=8){
            this.license="无";
        }else {
            this.license = license;
        }
    }

    public String getBrand() {
        return brand;
    }

    public void setBrand(String brand) {
        this.brand = brand;
    }

    public void print(){
        System.out.println("车牌:"+license+",品牌:"+brand);
    }
}

根据继承的知识,编写公司雇员类及其方法。

abstract class Employee{
    private int id;
    private String name;

    public abstract void ShowMessage();

    public Employee(int id, String name) {
        this.id = id;
        this.name = name;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

class SalesEmployee extends Employee{
    private int salary;

    public SalesEmployee(int id, String name, int salary) {
        super(id, name);
        this.salary = salary;
    }

    @Override
    public void ShowMessage() {
        System.out.println("工号:"+getId()+",姓名:"+getName()+",工资:"+salary);
    }
}

class BasePlusSalesEmployee extends Employee{
    private int baseSalary;
    private int sales;

    public BasePlusSalesEmployee(int id, String name, int baseSalary, int sales) {
        super(id, name);
        this.baseSalary = baseSalary;
        this.sales = sales;
    }

    @Override
    public void ShowMessage() {
        System.out.println("工号:"+getId()+",姓名:"+getName()+",工资:"+(baseSalary+20*sales));
    }
}
 

根据主程序需求,完成水果库存管理的程序。

Set<String> k=map.keySet();
        int n=0;
        for(String i:k){
            System.out.println("水果:"+i+",库存:"+map.get(i));
            n+=map.get(i);
        }
        System.out.println("当前水果总库存:"+n);

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值