Advertisement
PiotrSzewczyk

Zad 14

Mar 31st, 2020
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int a, b;
  5.  
  6. int zamiana ()
  7.     {
  8.         int pom;
  9.         pom=a;
  10.         a=b;
  11.         b=pom;
  12.     }
  13.  
  14.  
  15. int main ()
  16. {
  17.     cout<<"Podaj 2 liczby"<<endl;
  18.     cin>>a>>b;
  19.     cout<<"Wartosc a przed zamiana "<<a<<endl;
  20.     cout<<"Wartosc b przed zamiana "<<b<<endl;
  21.     zamiana();
  22.     cout<<"Wartosc a po zamianie "<<a<<endl;
  23.     cout<<"Wartosc b po zamianie "<<b<<endl;
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement