Answer to Question #324593 in C++ for Secret Agent

Question #324593

Odd-Even-inator

by聽CodeChum Admin

My friends are geeking out with this new device I invented. It checks if a number is even or odd! 馃く


Do you want to try it out?


Instructions:

  1. In the code editor, you are provided with a function that checks whether a number is even or odd.
  2. Your task is to ask the user for the number of integer, n, they want to input and then the actual n number values. For each of the number, check whether it is even or odd using the function provided for you.
  3. Make sure to print the correct, required message.

Input


1. Integer n

2. N integer values

Output


Enter路n:路5
Enter路value路#1:路3
3路is路odd
Enter路value路#2:路6
6路is路even
Enter路value路#3:路4
4路is路even
Enter路value路#4:路1
1路is路odd
Enter路value路#5:路3
3路is路odd
1
Expert's answer
2022-04-07T13:13:47-0400
#include <iostream>
#include <string>

using namespace std;

string OddOrEven(int val)
{
	if (val % 2 == 0)
		return "even";
	else
		return "odd";
}

int main()
{
	int n;
	cout << "Enter n: ";
	cin >> n;
	int val;
	for (int i = 0; i < n; i++)
	{
		cout << "Enter value #" << i + 1 << ": ";
		cin >> val;
		cout << val << " is " << OddOrEven(val)<<endl;
	}
}

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