Write a program that reads an integer and identifies if it is a…

Question Write a program that reads an integer and identifies if it is a… Image transcription textWrite a program that reads an integer and identifies if it is a positive number. #include usingnamespace std; Output: (if no is greater than 0) int main( ){ Enter a number : 3 int no; It is positive.cout<<"Enter a number:"; cin> >no; Output: (if no is lesser than if (no>0) or equal to 0)… Show more Engineering & Technology Computer Science Share QuestionEmailCopy link This question was created from Module 5 – Conditional Control Structure.pdf Comments (0)