Answer to Question #275500 in C++ for Awais

Question #275500

Write a C++ program that keeps taking positive integers from the user until user enters -1. The program counts and displays how may even and odd numbers are entered by the user. See the following example. Enter a number (enter -1 to exit): 5 Enter a number (enter -1 to exit): 34 Enter a number (enter -1 to exit): 4 Enter a number (enter -1 to exit): -1 You have entered 2 even and 1 odd numbers.

1
Expert's answer
2021-12-05T13:07:48-0500
#include<iostream>
using namespace std;
int main(){
	int x;
	int even = 0; 
	int odd = 0;
	do{
		cout<<"Enter a number (enter -1 to exit):  ";
		cin>>x;
		if(x%2==0){
			even++;
		}
		else{
			odd++;
		}
		
	}while(x!=-1);
	cout<<" You have entered "<<even<<" even and "<<odd - 1<<" odd numbers.";
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment