" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
using namespace std;
int main(){
int n;
cout << "Podaj liczbe" << endl;
cin >> n;
if (n > 0)
cout << "Liczba jest dodatnia" << endl;
else if (n == 0)
cout << "Liczba jest rowna 0" << endl;
else if (n < 0)
cout << "Liczba jest ujemna" << endl;
system ("pause");
return 0;
}