Advertisement
Guest User

asd

a guest
Mar 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cmath>
  4.  
  5.  
  6. int main()
  7. {
  8. int i;
  9. cout << "Podaj dowolną liczbę:" ;
  10. cin >> i;
  11. cout << "Wprowadzona liczba: " << i;
  12. cout << "Wartośc bezwględna libczy to" << abs(i) << ".\n";
  13.  
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement