Check Number is Positive or Negative in C
Advertisements
C++ Program to Check Number is Positive or Negative
In this porgram we check given number is +ve or -ve number if number is greater than 0 it will possitive if number is less than 0 i will negative number. To write this code we need only if....else conditional statement.
Check Given number is Negative or Positive in C++
#include<iostream.h>
#include<conio.h>
void main()
{
int num;
clrscr ();
cout<<"Enter any number: ";
cin>>num;
if (num > 0)
{
cout<<num<<" is a Positive number \n";
}
else if (num < 0)
{
cout<<num<<" is a Negative number \n";
}
else
{
cout<<"0 is Neither Positive nor Negative";
}
getch();
}
Output 1
Enter any Number: 15 15 is a Positive number
Output 2
Enter any Number: -40 -40 is a Negative number
Output 3
Enter any Number: 0 0 is Neither Positive nor Negative
Google Advertisment
