RafalSobala

zad3

Mar 20th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int a;
  5.  
  6. int WARTOSC_BEZWZGLEDNA(int a){
  7.     if(a<0){
  8.         return a*(-1);
  9.     }
  10.     else{
  11.         return a;
  12.     }
  13. }
  14.  
  15.  
  16.  
  17. int main()
  18. {
  19.     cout << "Podaj liczbe: " << endl;
  20.     cin >> a;
  21.  
  22.     cout << WARTOSC_BEZWZGLEDNA(a) << endl;
  23.     return 0;
  24. }
Add Comment
Please, Sign In to add comment