C++ Exercises: Check if a given array of integers and length 2, does not contain 15 or 20
C++ Basic Algorithm: Exercise-90 with Solution
Check if 15 or 20 Not Present in Array (Length 2)
Write a C++ program to check if an array of integers with length 2 does not contain 15 or 20.
Sample Solution:
C++ Code :
#include <iostream> // Including the input/output stream library
using namespace std; // Using the standard namespace
// Function that checks if neither of the first two elements in the array are equal to 15 or 20
bool test(int nums[]) {
return nums[0] != 15 && nums[0] != 20 && nums[1] != 15 && nums[1] != 20;
}
// Main function
int main () {
int nums1[] = { 12, 20 }; // Define an array nums1
int nums2[] = { 14, 15 }; // Define an array nums2
int nums3[] = { 11, 21 }; // Define an array nums3
// Output the result of test function for nums1, nums2, and nums3 arrays
cout << test(nums1) << endl;
cout << test(nums2) << endl;
cout << test(nums3) << endl;
return 0; // Return statement indicating successful termination of the program
}
Sample Output:
0 0 1
Visual Presentation:
Flowchart:
C++ Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a C++ program to check if a given array of integers and length 2, contains 15 or 20.
Next: Write a C++ program to check a given array of integers and return true if the array contains 10 or 20 twice. The length of the array will be 0, 1, or 2.
What is the difficulty level of this exercise?
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/cpp-exercises/basic-algorithm/cpp-basic-algorithm-exercise-90.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics