write a c++ program to find whether a number is positive or negative. September 13, 2016 by cloud host Source code- #include<iostream> using namespace std; int main(){ int number; cout<<“Enter a number “; cin>>number; if(number>0) cout<<“Negative”; else cout<<“Positive”; } OUTPUT- Enter a number 5 Negative