Advertisement
MargaritaOwl

Swap+variable

May 14th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4.  
  5. void main()
  6. {
  7.     setlocale(LC_ALL,"rus");
  8.     int a,b,l;
  9.     cout<<"Введите число А=";
  10.     cin>>a;
  11.     cout<<"Введите число В=";
  12.     cin>>b;
  13.  
  14.     l=a;
  15.     a=b;
  16.     b=l;
  17.     cout<<"a="<<a<<" b="<<b<<endl;
  18.     system("pause");
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement