Declare a Boolean variable named allEven. Read in an input value for variable valCount. Then, read valCount integers fro

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Declare a Boolean variable named allEven. Read in an input value for variable valCount. Then, read valCount integers fro

Post by answerhappygod »

Declare a Boolean variable named allEven. Read in an input valuefor variable valCount. Then, read valCount integers from input andoutput "All match" if all integers are even. Otherwise, output "Notall match".
Note: Even numbers are divisible by 2.
Ex: If the input is 3 70 80 40, the output is:
All match
#include <iostream>using namespace std;
int main() { int valCount;
/* Additional variable declarations go here */
/* Your code goes here */
if (allEven) { cout << "All match" << endl; } else { cout << "Not all match" <<endl; }
return 0;}
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply