Advertisement
drakon-firestone

Untitled

Oct 2nd, 2024
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. int a;
  2. int b;
  3.  
  4. cout << "Podaj liczbe a: ";
  5. cin >> a;
  6. cout << "Podaj liczbe b: ";
  7. cin >> b;
  8.  
  9. if(a > b)
  10. {
  11. cout << "a jest wieksze niz b" << endl;
  12. }
  13.  
  14. if(a < b)
  15. {
  16. cout << "a jest mniejsze niz b" << endl;
  17. }
  18.  
  19. if(a >= b)
  20. {
  21. cout << "a jest wieksze lub rowne niz b" << endl;
  22. }
  23.  
  24. if(a <= b)
  25. {
  26. cout << "a jest mniejsze lub rowne niz b" << endl;
  27. }
  28.  
  29.  
  30.  
  31. if(a == b)
  32. {
  33. cout << "a jest równe b" << endl;
  34. }
  35.  
  36. if(a != b)
  37. {
  38. cout << "a jest różne od b" << endl;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement