题解 | #实现接口#
实现接口
https://www.nowcoder.com/practice/b47b04275f7e4fa588221f03b2527d4d
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Demo d=new Demo();
Scanner scanner = new Scanner(System.in);
while (scanner.hasNextInt()) {
int x = scanner.nextInt();
int y = scanner.nextInt();
System.out.println(d.max(x, y));
}
}
}
interface Comparator {
/**
* 返回两个整数中的最大值
*/
int max(int x, int y);
}
//write your code here......
class Demo implements Comparator{
public int max(int x,int y){
if(x<y){
return y;
}else{
return x;
}
}
}