Advertisement
Guest User

While petlja

a guest
Sep 26th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int x;
  8.  
  9. cin >> x;
  10.  
  11. while (x % 2 == 0)
  12. {
  13. cout << "Broj je paran..." << endl;
  14. return 0;
  15. }
  16.  
  17.  
  18.  
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement