8 lines
134 B
Text
8 lines
134 B
Text
|
|
for x = 1 to 20
|
||
|
|
for y = x to 20
|
||
|
|
for z = y to 20
|
||
|
|
if x^2 + y^2 = z^2 then print "[";x;",";y;",";z;"]"
|
||
|
|
next z
|
||
|
|
next y
|
||
|
|
next x
|