题解 | #重写计算逻辑#

重写计算逻辑

https://www.nowcoder.com/practice/af4fd657b63241a3a0613d5c487a252f

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNextInt()) {
            int x = scanner.nextInt();
            int y = scanner.nextInt();
            Sub sub = new Sub(x, y);
            sub.calculate();
        }
    }

}

class Base {

    private int x;
    private int y;

    public Base(int x, int y) {
        this.x = x;
        this.y = y;
    }

    public int getX() {
        return x;
    }

    public int getY() {
        return y;
    }

    public void calculate() {
        System.out.println(getX() * getY());
    }

}

class Sub extends Base {

    //write your code here......
        public Sub(int x,int y){    //创建带参构造方法,因为在Main()方法中,子类的初始化是带参
            super(x,y); // 子类初始化之前,一定要先完成父类数据的初始化
        };

        //重写方法calculate()
        @Override
        public void calculate() {
            if (super.getY() != 0){
                System.out.println(  super.getX() / super.getY() );
            }
            else{
                System.out.println("Error");
            }
        
    }


}

全部评论

相关推荐

11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务