/dev/blah

things i want to remember, things i want to share

Développeur Python et adepte Linux depuis 2005, passionné par beaucoup trop de choses. Profil Github

Entries tagged “absurd”

Fermat

written by tshirtman, on 8/14/09 10:51 PM.

ce programme donne tort à Fermat…
#!/usr/bin/env python
a=1
while True:
    a+=1
    print a
    for b in range(a):
        c_cube = a**3 + b**3
        c = c_cube**(1.0/3)
        if int (c) == c:
            print a,b,c
            break
… au bout d’un temps infini :).
Tip me if you like this :)