josiftepe

Untitled

Dec 11th, 2020
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     // swap values
  8.     int a = 5;
  9.     int b = 6;
  10.    
  11.     int tmp_a = a; // temporary storage room for the first variable
  12.     a = b;
  13.     b = tmp_a;
  14.    
  15.     cout << a << " " << b << endl;
  16.     // sakam da mi pecati 6 5
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment