Advertisement
Josif_tepe

Untitled

May 18th, 2024
544
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.     int broj;
  5.     cin >> broj;
  6.  
  7.     if(broj % 2 == 0 or  broj > 100) {
  8.         cout << "DA" << endl;
  9.     }
  10.     else {
  11.         cout << "NE" << endl;
  12.     }    
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement