Advertisement
askarulytarlan

itstep

Oct 5th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <cmath>
  4. #include <math.h>
  5.  
  6.  
  7. using namespace std;
  8.  
  9. int a = 5;
  10. int b = 4;
  11. int c;
  12.  
  13. int main(int argc, const char * argv[]) {
  14.  
  15. c=b;
  16. b=a;
  17. a=c;
  18. cout<< a << " " << b << endl;
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement