Write a C++ program to enter the numbers till the user wants and in the end it display the count of positive, negative and zeros entered. 


Program Code:
#include<iostream>
using namespace std;
int main()
{
int number;
int ptotal = 0, ntotal = 0, ztotal = 0;
char ch;
do
{
cout<<"Enter number from the keyboard : ";
cin>>number;
cout<<endl;
if(number > 0)
{
ptotal = ptotal + 1;
}
else if(number < 0)
{
ntotal = ntotal + 1;
}
else
{
ztotal = ztotal + 1;
}
cout<<"Do you want to Continue(y/n)? ";
cin>>ch;
}
while(ch == 'y' || ch == 'Y');
cout<<"Total entered Positive Number :"<<ptotal;
cout<<endl;
cout<<"Total entered Negative Number :"<<ntotal;
cout<<endl;
cout<<"Total entered Zero Number :"<<ztotal;
return 0;
}

The program output is tested on www.jdoodle.com


Output:
Enter number from the keyboard : 3 n
Enter number from the keyboard : -13 n
Enter number from the keyboard : 0 n
Enter number from the keyboard : 45 n
Enter number from the keyboard : -8 y
Total entered Positive Number : 2
Total entered Negative Number : 2
Total entered Zero Number : 1


Thanks
Mukesh Rajput
Mukesh Rajput

Mukesh Rajput

I am a Computer Engineer, a small amount of the programming tips as it’s my hobby, I love to travel and meet people so little about travel, a fashion lover and love to eat food, I am investing a good time to keep the body fit so little about fitness also..

Post A Comment:

0 comments: