Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int x;
- cout << "Podaj liczbe " << endl;
- cin >> x ;
- if( x < 0 )
- {
- x = x * (-1);
- cout << "Wartosc bezwzgledna wynosi; " << x << endl;
- }
- else
- {
- cout << "Wartosc bezwzgledna wynosi: " << x<< endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment