Write a Java program that accepts two integer values between 25 to 75 and return true if there is a common digit in both numbers

  • برمجة جافا
  • برمجة

Write a Java program that accepts two integer values between 25 to 75 and return true if there is a common digit in both numbers


Sample Output:

Input the first number : 35                                            
Input the second number: 45                                            
Result: true

الأجوبة

import java.util.*;
 public class Exercise64 {
 public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        System.out.print("Input the first number : ");
        int a = in.nextInt();  
		System.out.print("Input the second number: ");
		int b = in.nextInt(); 
		System.out.println("Result: "+common_digit(a, b));
    }
	
	public static boolean common_digit(int p, int q)
     {  
	   if (p<25 || q>75)
		   return false;
	   int x = p % 10;
	   int y = q % 10;
	   p /= 10;
	   q /= 10;
	   return (p == q || p == y || x == q || x == y);
     }
}

Sample Output:

Input the first number : 35                                            
Input the second number: 45                                            
Result: true
هل كان المحتوى مفيد؟

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

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