티스토리 뷰

반응형
import java.util.Scanner;
@FunctionalInterface
interface MyInterface{
public String method(int a, int b);
}
public class TEST {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
MyInterface fi;
fi=(a, b) -> {
if(a==b)
return "==";
else {
String c = (a >= b) ? ">" : "<";
return c;
}
};
int a = sc.nextInt();
int b = sc.nextInt();
String c=fi.method(a,b);
System.out.println(c);
}
}
view raw 1330.java hosted with ❤ by GitHub
반응형
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
글 보관함