Cool Digits

Find out (A + B + C + D) such that AB × CB = DDD, where AB and CB are two-digit numbers and DDD is a three-digit number.


The answer is 21.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Ahmed Abdelbasit
Jun 12, 2014

Just By Using Programming with VB 2013 :D .....

Private Sub Button1_Click

    For a = 1 To 9
        For b = 1 To 9
            For c = 1 To 9
                For d = 1 To 9
                    If ((10*a+b)*(10*c+b) = d+10*d+100*d) Then
                        Button1.Text = a + b + c + d
                        Label1.Text = (a+10*b+100*c+1000*d)
                    End If
                Next
            Next
        Next
    Next
End Sub

the results are : 2739 2739 ... so , a = 2. b = 7 , c = 3 , d = 9 a=2 . b=7 , c=3 , d=9

so , a + b + c + d = 2 + 3 + 7 + 9 = 21 a+b+c+d = 2+3+7+9=21

answer is 3 digits which are same answer 2739 is 4 different digits ?

Sunil Pradhan - 6 years, 11 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...