Jump to content

5 to 10 digits


Asimov Pupil

Recommended Posts

It was quite easy:

 

Private Sub Timer1_Timer()

Label1.Caption = 54321 * Text1.Text

If InStr(Label1.Caption, "12345") Then

List1.AddItem (Label1.Caption)

End If

 

Text1.Text = Text1.Text + 1

End Sub

 

Simple program I cooked up.

Link to comment
Share on other sites

Another approach is to try to derive the digits by the following method:

 

54321*abcde=.....12345. e must be 5, since 1*e should end in 5. Now, we have

 

54321*abcd5

........271605

......

 

Next, d should be 4, since 1*d should end in 4:

 

54321*abc45

........271605

......217284

 

or in abbreviate form

54321*abc45

......2444445

 

Next, 1*c+4 should end in 3, giving c = 9, and then

 

54321*ab945

......2444445

....488889

 

or

54321*ab945

....51333345

 

We now need another 9, so that b + 3 ends in 2, and get

54321*a9945

....51333345

..488889

 

or

54321*a9945

..540222345

 

And at last, a = 9:

54321*99945

..540222345

488889

5429112345

 

The method will work in all cases (if you substitute 12345 and 54321 with whatever you want), but in this case the method is especially well-applicable, since 54321 ends in 1, and we therefore don't need to check multiple possibilities.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.