题解 | #实现接口#

实现接口

http://www.nowcoder.com/practice/b47b04275f7e4fa588221f03b2527d4d

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Comparator comparator = new ComparatorImpl();

        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNextInt()) {
            int x = scanner.nextInt();
            int y = scanner.nextInt();
            System.out.println(comparator.max(x, y));
        }
    }


}

interface Comparator {
    /**
     * 返回两个整数中的最大值
     */
    int max(int x, int y);
}
  class ComparatorImpl implements Comparator {
    public  int max(int x,int y) {
        return Math.max(x,y);
    }
}

全部评论
加油
点赞 回复 分享
发布于 2022-04-25 15:27

相关推荐

评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务