MeehoweCK

Untitled

Mar 19th, 2021
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     /* Operatory porównania
  8.     > - większe
  9.     < - mniejsze
  10.     >= - większe lub równe
  11.     <= - mniejsze lub równe
  12.     == - równe
  13.     != - różne od siebie
  14.     */
  15.  
  16.     /* Operatory logiczne
  17.     && - i (koniunkcja)
  18.     || - lub (alternatywa)
  19.     ! - przeczenie
  20.     */
  21.  
  22.     if(5 < 13 || 7 > 10)
  23.         cout << "YES\n";
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment