DefDbl A-Z
Dim crlf$
Private Sub cmd1_Click()
Text1.Text = ""
Open "two special partitions.txt" For Output As #2
For tot = 1 To 50
For a = 1 To tot / 3
For b = a To (tot - a) / 2
c = tot - a - b
For a2 = a To tot / 3
For b2 = a2 To (tot - a2) / 2
If a2 <> a Or b2 <> b Then
c2 = tot - a2 - b2
If a * a + b * b + c * c = a2 * a2 + b2 * b2 + c2 * c2 Then
Text1.Text = Text1.Text & mform(a * a + b * b + c * c, "################0") & " "
Text1.Text = Text1.Text & Str(a) & Str(b) & Str(c) & " "
Text1.Text = Text1.Text & Str(a2) & Str(b2) & Str(c2) & crlf
Print #2, mform(a * a + b * b + c * c, "################0"); " ";
Print #2, Str(a) & Str(b) & Str(c); " ";
Print #2, Str(a2) & Str(b2) & Str(c2)
End If
End If
DoEvents
Next
Next
Next
Next
Next
Close 2
Text1.Text = Text1.Text & crlf & " done"
End Sub
Private Sub cmd2_Click()
Open "two special partitions.txt" For Input As #1
Text1.Text = ""
l$ = " "
Do
p$ = l
Line Input #1, l$
If Left(l, 17) = Left(p, 17) Then
ct = ct + 1
If ct = 2 Then Text1.Text = Text1.Text & p & crlf
Text1.Text = Text1.Text & l & crlf
Else
ct = 1
End If
DoEvents
Loop Until EOF(1)
Close 1
End Sub
Private Sub Form_Load()
Form1.Visible = True
crlf = Chr$(13) + Chr$(10)
End Sub
Function mform$(x, t$)
a$ = Format$(x, t$)
If Len(a$) < Len(t$) Then a$ = Space$(Len(t$) - Len(a$)) & a$
mform$ = a$
End Function
The second part is invoked after sorting the output from the first part.
|
Posted by Charlie
on 2017-10-28 11:22:23 |