#include<iostream>
using namespace std;
void main()
{
setlocale(LC_ALL, "rus");
int num;
cout << "Введите число: ";
cin >> num;
if (num < 0)
cout << "NEGATIVE" << endl;
else
if (num > 0)
cout << "POSITIVE" << endl;
cout << "ZERO" << endl;
system("pause");
}
#include<iostream>
using namespace std;
void main()
{
setlocale(LC_ALL, "rus");
int num;
cout << "Введите число: ";
cin >> num;
if (num < 0)
cout << "NEGATIVE" << endl;
else
if (num > 0)
cout << "POSITIVE" << endl;
else
cout << "ZERO" << endl;
system("pause");
}