Odpowiedź:
#include <iostream>
using namespace std;
int main()
{
float liczba;
cout << "Podaj liczbe: ";
cin >> liczba;
if (liczba == 0)
cout << "Liczba " << liczba << " jest rowna 0.";
else if (liczba > 0)
cout << "Liczba " << liczba << " jest wieksza od 0.";
else
cout << "Liczba " << liczba << " jest mniejsza od 0.";
return 0;
}
Wyjaśnienie: