Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

java If we input a number formed by 4 digits and these digits are not all of the same value, then it obeys the following

java

If we input a number formed by 4 digits and these digits are not all of the same value, then it obeys the following law. Let us process the number in the following way:

Arrange the digits in the way from bigger to smaller, such that it forms the biggest number that could be made from these 4 digits;

Arrange the digits in the way from smaller to bigger, such that it forms the smallest number that could be made from these 4 digits (If there is 0 among these 4 digits, the number obtained may be less than four digits);

Find the difference of these two numbers that is a new four digital number.

Repeat the above process (1-3), we get the result 6174 or 0.

Write the program to implement the above algorithm.

The output from the program should show the procedure for finding this number and the number of repetitions.

Sample Input

Sample Output

5364

2221

4444

-1

N=5364:

6543-3456=3087

8730-378=8352

8532-2358=6174

Ok!! 3 times

N=2221:

2221-1222=999

999-999=0

Ok!! 2 times

N=4444:

No!!

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle 10g SQL

Authors: Joan Casteel, Lannes Morris Murphy

1st Edition

141883629X, 9781418836290

More Books

Students also viewed these Databases questions