Java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num1 = sc.nextInt();
int num2 = sc.nextInt();
System.out.printf("%d > %d --- %b\n", num1, num2, num1 > num2 ? true : false);
System.out.printf("%d < %d --- %b\n", num1, num2, num1 < num2 ? true : false);
System.out.printf("%d >= %d --- %b\n", num1, num2, num1 >= num2 ? true : false);
System.out.printf("%d <= %d --- %b\n", num1, num2, num1 <= num2 ? true : false);
}
}
|
cs |