Advertisement
Spocoman

Substitute

Sep 10th, 2024
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.19 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int a = Integer.parseInt(scanner.nextLine()),
  7.                 b = Integer.parseInt(scanner.nextLine()),
  8.                 c = Integer.parseInt(scanner.nextLine()),
  9.                 d = Integer.parseInt(scanner.nextLine()),
  10.                 counter = 0;
  11.  
  12.         for (int k = a; k < 9; k++) {
  13.             for (int l = 9; l >= b; l--) {
  14.                 for (int m = c; m < 9; m++) {
  15.                     for (int n = 9; n >= d; n--) {
  16.                         if (k % 2 == 0 && m % 2 == 0 && l % 2 == 1 && n % 2 == 1) {
  17.                             if (k == m && l == n) {
  18.                                 System.out.println("Cannot change the same player.");
  19.                             } else {
  20.                                 System.out.printf("%d%d - %d%d\n", k, l, m, n);
  21.                                 if (++counter == 6) {
  22.                                     System.exit(0);
  23.                                 }
  24.                             }
  25.                         }
  26.                     }
  27.                 }
  28.             }
  29.         }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement