Advertisement
LEGEND2004

if else

Aug 25th, 2024
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.38 KB | None | 0 0
  1.  
  2. #pragma GCC optimize("O3")
  3. #include <bits/stdc++.h>
  4. using namespace std;
  5.  
  6. #define int long long
  7. #define endl '\n'
  8. #define fastio ios_base::sync_with_stdio(0); cin.tie(0)
  9.  
  10. signed main()
  11. {
  12.     fastio;
  13.     /*
  14.     int n , a , b , c;
  15.     cin >> n;
  16.     cout << n % 10 << '\n'; // A
  17.     cout << (n / 10) % 10 << '\n'; // B
  18.     cout << (n / 100) % 10 << '\n'; // C
  19.     a = n / 100;
  20.     b = (n / 10) % 10;
  21.     c = n % 10;
  22.     int sum = a + b + c;
  23.     int pro = a * b * c;
  24.     cout << sum << '\n'; // D
  25.     cout << pro << '\n'; // E
  26.     */
  27.  
  28.     int n;
  29.     cin >> n;
  30.     /*
  31.     ==
  32.     >=
  33.     <=
  34.     !=
  35.     >
  36.     <
  37.     */
  38.     /*
  39.     if(n > 0)
  40.         cout << "musbet" << '\n';
  41.     else if(n < 0)
  42.         cout << "menfi" << '\n';
  43.     else
  44.         cout << "sifir" << '\n';
  45.     */
  46.     /*
  47.     if(n > 0 && n % 2 == 0)
  48.         cout << "Yes";
  49.     else
  50.         cout << "No";
  51.     */
  52.     /*
  53.     if(n % 3 == 0 || n % 5 == 0)
  54.         cout << "Yes";
  55.     else
  56.         cout << "No";
  57.     */
  58.     /*
  59.     if(n) // n != 0
  60.         cout << "Yes";
  61.     else
  62.         cout << "No";
  63.         */
  64.     /*
  65.     if(n % 2 != 0) // n % 2 != 0
  66.         cout << "tek\n";
  67.     else
  68.         cout << "cut\n";
  69.     */
  70.     /*
  71.     if(n > 0 || (n < 0 && n % 2))
  72.         cout << "Yes";
  73.     else
  74.         cout << "No";
  75.  
  76.  
  77.     1 0 1 0
  78.     */
  79.     // cout << (n % 2 ? "tek" : "cut") << '\n';
  80.  
  81. }
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement