Q:

Write a C++ program to check if one given temperatures is less than 0 and the other is greater than 100

0

Write a C++ program to check if one given temperatures is less than 0 and the other is greater than 100

Sample Output:

1
1
0

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>
using namespace std;

bool test(int temp1, int temp2)
        {
            return temp1 < 0 && temp2 > 100 || temp2 < 0 && temp1 > 100;
        }
        
int main() 
 {
  cout << test(120, -1) << endl;  
  cout << test(-1, 120) << endl;  
  cout << test(2, 120) << endl;  
  return 0;    
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now