Write a C++ program to check a given integer and return true if it is within 10 of 100 or 200

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

Write a C++ program to check a given integer and return true if it is within 10 of 100 or 200

Sample Output:

1
1
0

الأجوبة

#include <iostream>

using namespace std;

bool test(int x)
        {
              if(abs(x - 100) <= 10 || abs(x - 200) <= 10)
                return true;
            return false;
        }
        
int main() 
 {
  cout << test(103) << endl;  
  cout << test(90) << endl;  
  cout << test(89) << endl;  
  return 0;    
}
هل كان المحتوى مفيد؟

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

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