bacs2018inde.py

Created by andreanx

Created on May 05, 2018

118 Bytes

Support de recherche et vérification pour l’exercice 1 du sujet de Maths du BAC S 2018 en Inde : https://toutmonexam.fr/epreuve.php?id=2954


def algo(n):
  T=1000
  for i in range(1,n+1):
    T=0.82*T+3.6
    print(i,round(T,0))
  return T