print-Hello-World-/test.txt

21 lines
258 B
Text
Raw Normal View History

2020-09-01 02:17:35 +00:00
Comment: Pseudocode
define gcd(a, b)
if b > 0
return gcd(b, a mod b)
else
return a
print "test"
2020-09-01 16:47:50 +00:00
constant N = 1000
2020-09-01 02:17:35 +00:00
A = []
for i from 0 to N - 1
A[i] = i
ans = 0
for i in A
for j in A
ans = gcd(i, j) + ans
print ans