Solution 1¶ Treść zadania¶ Napisz program zgodny z poniższą specyfikacją. Nie korzystaj z funkcji abs, fabs Specification¶ Input¶ \(a\) - liczba całkowita Output¶ Wartość bezwzględna z \(a\) Solution¶ #include <iostream> using namespace std; int main() { int a; cout << "Podaj liczbe:" << endl; cin >> a; if(a < 0) { cout << "|" << a << "| = " << -a << endl; } else { cout << "|" << a << "| = " << a << endl; } return 0; } Was this page helpful? Thanks for your feedback! Thanks for your feedback!