Advertisement
MohamedAbdel3al

test

Jan 30th, 2022
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. void Data_Structure(){
  6. ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  7. #ifndef ONLINE_JUDGE
  8. freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  9. #endif
  10. }
  11.  
  12.  
  13.  
  14. int main (){
  15. Data_Structure();
  16. int a, b;
  17. a = b = 4;
  18. b = a++;
  19. cout << a++ << ' ' << --b << ' ' << ++a << ' ' << b-- << '\n';
  20.  
  21. // 5 3 7 3
  22.  
  23.  
  24. return 0;
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement