Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/Arithmetic-Rational/Wren/arithmetic-rational.wren
Normal file
9
Task/Arithmetic-Rational/Wren/arithmetic-rational.wren
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import "/math" for Int
|
||||
import "/rat" for Rat
|
||||
|
||||
System.print("The following numbers (less than 2^19) are perfect:")
|
||||
for (i in 2...(1<<19)) {
|
||||
var sum = Rat.new(1, i)
|
||||
for (j in Int.properDivisors(i)[1..-1]) sum = sum + Rat.new(1, j)
|
||||
if (sum == Rat.one) System.print(" %(i)")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue