Guest User

Untitled

a guest
Dec 10th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5. int main(){
  6. double n,b,a,c;
  7. cout<<"Podaj 2 liczby a i b\n";
  8. cin>>a>>b;
  9. c=a;
  10. a=b;
  11. b=c;
  12. cout<<"a = "<<a<<" b = "<<b<<"\n";
  13. }
Add Comment
Please, Sign In to add comment