Advertisement
Josif_tepe

Untitled

May 22nd, 2024
608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.    int n;
  7.    cin >> n;
  8.  
  9.    int i = n, cifra, zbir = 0;
  10.    while(i > 0)
  11.    {
  12.     cifra = i % 10;
  13.     i /= 10;
  14.     zbir += 1;
  15.    }
  16.    if(zbir % 2 == 0)
  17.    {
  18.     cout << "PAREN" << endl;
  19.    }
  20.    else
  21.    {
  22.     cout << "NEPAREN" << endl;
  23.    }
  24.  
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement