Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Check whether two given integers are in the range 40..50 inclusive, or they are both in the range 50..60 inclusive

C++ Basic Algorithm: Exercise-20 with Solution

Write a C++ program to check whether two given integers are in the range 40..50 inclusive, or they are both in the range 50..60 inclusive.

Sample Solution:

C++ Code :

#include <iostream>

using namespace std;

bool test(int x, int y)
        {
            return (x >= 40 && x <= 50 && y >= 40 && y <= 50) || (x >= 50 && x <= 60 && y >= 50 && y <= 60);
        }
        
int main() 
 {
  cout << test(78, 95) << endl;  
  cout << test(25, 35) << endl;  
  cout << test(40, 50) << endl;  
  cout << test(55, 60) << endl;  
  return 0;    
}

Sample Output:

0
0
1
1

Pictorial Presentation:

C++ Basic Algorithm Exercises: Check whether two given integers are in the range 40..50 inclusive, or they are both in the range 50..60 inclusive.

Flowchart:

Flowchart: Check whether two given integers are in the range 40..50 inclusive, or they are both in the range 50..60 inclusive.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to check which number nearest to the value 100 among two given integers. Return 0 if the two numbers are equal.
Next: Write a C++ program to find the larger value from two positive integer values that is in the range 20..30 inclusive, or return 0 if neither is in that range..

What is the difficulty level of this exercise?