Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. #include <cstdlib>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int a;
  9. int b;
  10. cout << "Podaj liczbe A:";
  11. cin >> a;
  12. cout << "Podaj liczbe B:";
  13. cin >> b;
  14. if (a>b)
  15. cout << a;
  16. else
  17. cout << b;
  18. if (a == b) // bez tego dziala
  19. cout << a;
  20.  
  21. system("PAUSE");
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement