Write a C++ program to check two given integers, each in the range 10..99. Return true if a digit appears in both numbers, such as the 3 in 13 and 33

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

Write a C++ program to check two given integers, each in the range 10..99. Return true if a digit appears in both numbers, such as the 3 in 13 and 33

Sample Output:

1 
0 
1

الأجوبة

#include <iostream>
using namespace std;

bool test(int x, int y)
        {
           return x / 10 == y / 10 || x / 10 == y % 10 || x % 10 == y / 10 || x % 10 == y % 10;
        }
        
int main() 
 {
  cout << test(11, 21) << endl;  
  cout << test(11, 20) << endl;  
  cout << test(10, 10) << endl;  
  return 0;    
}
هل كان المحتوى مفيد؟

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

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