Advertisement
Spocoman

Substitute

Sep 22nd, 2023 (edited)
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.85 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int a, b, c, d, counter = 0;
  7.     cin >> a >> b >> c >> d;
  8.  
  9.     for (int k = a; k < 9; k++) {
  10.         for (int l = 9; l >= b; l--) {
  11.             for (int m = c; m < 9; m++) {
  12.                 for (int n = 9; n >= d; n--) {
  13.                     if (k % 2 == 0 && m % 2 == 0 && l % 2 == 1 && n % 2 == 1) {
  14.                         if (k == m && l == n) {
  15.                             cout << "Cannot change the same player.\n";
  16.                         }
  17.                         else {
  18.                             cout << k << l << " - " << m << n << endl;
  19.  
  20.                             if (++counter == 6) {
  21.                                 return 0;
  22.                             }
  23.                         }
  24.                     }
  25.                 }
  26.             }
  27.         }
  28.     }
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement