Write a C++ program to check whether three given integer values are in the range 20..50 inclusive. Return true if 1 or more of them are in the said range otherwise false

  • برمجة سي بلس بلس
  • برمجة

Write a C++ program to check whether three given integer values are in the range 20..50 inclusive. Return true if 1 or more of them are in the said range otherwise false

Sample Output:

1
1
1
0

الأجوبة

#include <iostream>
using namespace std;

bool test(int x, int y, int z)
        {
            return (x >= 20 && x <= 50) || (y >= 20 && y <= 50) || (z >= 20 && z <= 50);
        }
        
int main() 
 {
  cout << test(11, 20, 12) << endl;  
  cout << test(30, 30, 17) << endl;  
  cout << test(25, 35, 50) << endl;  
  cout << test(15, 12, 8) << endl;    
  return 0;    
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...