Initial release
This commit is contained in:
13
L'algorithme du professeur Guique.py
Normal file
13
L'algorithme du professeur Guique.py
Normal file
@@ -0,0 +1,13 @@
|
||||
a = 1
|
||||
b = 4
|
||||
c = 3
|
||||
k = 1
|
||||
n = 0
|
||||
|
||||
while k<1000-n:
|
||||
a = b
|
||||
b = c+a
|
||||
c = - 4*c - 3*a - b
|
||||
n = a+b
|
||||
k += 1
|
||||
print(a, ",", b, ",", c)
|
||||
Reference in New Issue
Block a user