Advertisement
Lukasz_Miskiewicz

Zadanie 5

Mar 24th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4.  
  5. int suma()
  6. {
  7. int a, b;
  8. cout<<"podaj liczby do sumowania"<<endl;
  9. cin>>a;
  10. cin>>b;
  11. cout<<"suma liczb wynosi ";
  12. cout<<(a+b)<<endl;
  13. }
  14.  
  15.  
  16.  
  17. int main()
  18. {
  19. suma();
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement