Advertisement
LEGEND2004

For solutions

Feb 15th, 2024
1,356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.72 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     // A
  7.     int n;
  8.     cin >> n;
  9.     for(int i = 1; i <= n; i++){
  10.         cout << i << " OK" << '\n';
  11.     }
  12.    
  13.     // B
  14.     int a , b;
  15.     cin >> a >> b;
  16.     for(int i = a; i <= b; i++){
  17.         if(i % 2 != 0) // tekdirse
  18.             cout << i << " ";
  19.     }
  20.    
  21.     // C
  22.     int a , b;
  23.     cin >> a >> b;
  24.     for(int i = b; i >= a; i--){
  25.         if(i % 2 == 0) // cutdurse
  26.             cout << i << " ";
  27.     }
  28.    
  29.    
  30.     // D
  31.     int n;
  32.     cin >> n;
  33.     for(int i = n; i >= 0; i--){
  34.         cout << i << " sek\n";
  35.     }
  36.    
  37.     // E
  38.     int n;
  39.     cin >> n;
  40.     for(int i = 2; i < n; i *= 2){
  41.         cout << i << " ";
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement