write a Java Program to input two numbers and check weather the first number is divisible by the second or not
the correct and the most appropriate answer will be marked as the brainliest
Answers
Answered by
1
Answer:
x = int(input("Enter first number: "))
y = int(input("Enter second number: "))
print(x % y and "Not Fully Divisible" or "Fully Divisible")
OUTPUT
Enter first number: 4
Enter second number: 2
Fully Divisible
Answered by
0
Answer:
J 0 | .N
Explanation:
CHEC|< PIC C0ME PLEASE
Attachments:
Similar questions