Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class GreaterNumber {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int num1 = Integer.parseInt(scanner.nextLine());
- int num2 = Integer.parseInt(scanner.nextLine());
- if (num1 > num2) {
- System.out.println(num1);
- } else {
- System.out.println(num2);
- }
- }
- }
- ИЛИ:
- import java.util.Scanner;
- public class GreaterNumber {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int num1 = Integer.parseInt(scanner.nextLine());
- int num2 = Integer.parseInt(scanner.nextLine());
- System.out.println(Math.max(num1, num2));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement