You are provided with 3 numbers : input1,
input2 and input3. Each of these are four digit
numbers within the range >=1000 and <=9999
i.e.
1000 <= input1 <= 9999
1000 <= input2 <= 9999
1000 <= input3 <= 9999
You are expected to find the Key using the
below formula -
Key = (SMALLEST digit in the thousands place
of all three numbers] [LARGEST digit in the
hundreds place of all three numbers]
[SMALLEST digit in the tens place of all three
numbers] [LARGEST digit in the units place of
all three numbers]
Given three numbers, write an algorithm to
find the key using the above mentioned
formula.
Answers
Answered by
0
Answer:
3point is a correct
Explanation:
But try to find yourself
Similar questions