35657

Untitled

Oct 21st, 2023
826
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5.  
  6.  
  7. int main() {
  8.     setlocale(LC_ALL, "ru");
  9.    
  10.     int x;
  11.     cout << "Введите число: ";
  12.     cin >> x;
  13.  
  14.     if (x % 2 == 0) {
  15.         cout << "Четное число" << endl;
  16.     }
  17.     else {
  18.         cout << "Нечетное число" << endl;
  19.     }
  20. }
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment