In C++ please
Declare a Boolean variable named allValid. Read in an inputvalue for variable numVals. Then, read numVals integers from input,and output "Only valid values" if none of the integers are in therange 100 to 1000 inclusive. Otherwise, output "Invalidvalue(s)".
Ex: If the input is 2 550 1020, the output is:
Invalid value(s)
Declare a Boolean variable named allValid. Read in an input value for variable numVals. Then, read numVals integers from input, and output "Only valid values" if none of the integers are in the range 100 to 1000 inclusive. Otherwise, output "Invalid value(s)". Ex: If the input is 2 550 1020, the output is: Invalid value (s) #include <iostream> using namespace std; int main() { int numVals; /* Additional variable declarations go here /* Your code goes here */ if (allValid) { cout << "Only valid values" << endl; } else { cout << "Invalid value (s) " << endl; } return 0;
In C++ please Declare a Boolean variable named allValid. Read in an input value for variable numVals. Then, read numVals
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am