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
- برمجة جافا
- برمجة
- 2021-05-01
- razanmazen8711884270
الأجوبة
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
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال