Advertisement
BowserFlash13

Untitled

Jan 14th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /******************************************************************************
  2.  
  3. Online C++ Compiler.
  4. Code, Compile, Run and Debug C++ program online.
  5. Write your code in this editor and press "Run" button to compile and execute it.
  6.  
  7. *******************************************************************************/
  8.  
  9. #include <iostream>
  10.  
  11. using namespace std;
  12.  
  13. int main()
  14. {
  15. int a, b;
  16.  
  17. cout << "Upisi 2 broja :";
  18. cin >> a>>b;
  19.  
  20. if (a!=b){
  21. if (a % 2 == 0 && b % 2 == 0)
  22. {}
  23. else
  24. cout << "A nije b";
  25. exit(1);
  26. }
  27.  
  28. return 0;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement