#include <iostream.h>
#include <conio.h>
int main()
{
clrscr();
int n;
cout <<"Enter Number: ";
cin >> n;
if (n>0)
{
cout << "\nThe Number Is Positive" <<endl;
}
else
{
cout << "The Number Is Negetive" <<endl;
}
getch();
return 0;
}
#include <conio.h>
int main()
{
clrscr();
int n;
cout <<"Enter Number: ";
cin >> n;
if (n>0)
{
cout << "\nThe Number Is Positive" <<endl;
}
else
{
cout << "The Number Is Negetive" <<endl;
}
getch();
return 0;
}