Advertisement
MargaritaOwl

Swap3+variable

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