Advertisement
Guest User

C++

a guest
Oct 23rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int n;
  8. cout<<"Vnesi broj"<<endl;
  9. cin>>n;
  10. if(n%2==0)
  11. cout<<"Brojot e paren"<<endl;
  12. else
  13. cout<<"Brojot e neparen"<<endl;
  14.  
  15.  
  16.  
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement