Vla_DOS

Untitled

Oct 13th, 2022
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     setlocale(0, "");
  7.    
  8.     int x1, x2, y1, y2;
  9.    
  10.     cout << "x1 = ";
  11.     cin >> x1;
  12.     cout << "y1 = ";
  13.     cin >> y1;
  14.     cout << "x2 = ";
  15.     cin >> x2;
  16.     cout << "y2 = ";
  17.     cin >> y2;
  18.    
  19.     if ((x1 + y1 + x2 + y2) % 2){
  20.     cout << "Дані поля мають однаковий колір";
  21.     }
  22.     else {
  23.         cout << "Дані поля мають однаковий колір";
  24.     }
  25.    
  26.     return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment