Write a C++ program to check a given integer and return true if it is within 10 of 100 or 200
- برمجة سي بلس بلس
- برمجة
- 2021-05-11
- MarwaMohammed
الأجوبة
#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;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال