libdo

Untitled

Sep 15th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. void dodawanie (float a, float b)
  5. {
  6. cout<<a<<"+"<<b<<"="<<a+b;
  7. }
  8. void odejmowanie (float a, float b)
  9. {
  10. cout<<a<<"-"<<b<<"="<<a+b;
  11. }
  12. void mnozenie (float a, float b)
  13. {
  14. cout<<a<<"*"<<b<<"="<<a+b;
  15. }
  16. void dzielenie (float a, float b)
  17. {
  18. if (b==0) cout<<"gdzie przez 0?!";
  19. else
  20. cout<<a<<"/"<<b<<"="<<a+b;
  21. }
  22. main()
  23. {
  24. float a,b;
  25. char odp,znakl
  26. do }
  27. cout <<"\n kalkulator prosty z dzialaniami: +.-,*,/";
  28. cout <<"\n kalpodaj liczbe a"; cin>>a;
  29. cout <<"\n npodaj liczbe b" cin>>b;
  30. cout <<"\n jakie dzialanie wybierasz : +.-,*,/";
  31.  
  32. cout <<"\n czy zakonczyc dzialanie programu? t/n"
  33. cin>>odp;
  34.  
  35. } while (odp=='n');
  36.  
  37.  
  38.  
  39.  
  40.  
  41. return 0;
  42.  
  43.  
  44. }
Add Comment
Please, Sign In to add comment