Computer Science, asked by sundusqasim48, 1 month ago

Write a Java program to give the user the ability to enter an integer of 4 digits. Assume the value entered by
the user is: 5897, then your program must check the given cases and output accordingly.
To make it easier understand the required cases, the entered value will be represented as ABCD where A=5,
B=8, C=9, and D=7.
a. In case the value entered by the user has less or more than 4 digits the program must output “you
have entered a number not in the required range”, and the program ends.
b. In case A is equal to D, and B is equal to C, your program must output “the value entered is
Palindrome”, otherwise the program outputs “the value entered is NOT Palindrome”.
c. In case A is even, the program must output “the value entered starts with even”, otherwise the
program outputs “the value entered starts with odd”.
d. In case the integer average of B & C is even, the program must output “the average of the second
and third digits is even”, otherwise the program output “the average of the second and third digits
is odd”.
(Hint: assume B=8 & C=9 => the integer average is (8+9)/2 = 17/2=8, which is EVEN)

Answers

Answered by kumarupdesh1982
1

Explanation:

int sum,product,difference, average, quotient; public static void main ( String[] args) ...

1 vote

Similar questions