]> AND Private Git Repository - modelisationMathS3.git/blob - probapremier.py
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
ajout d'exos de congruences
[modelisationMathS3.git] / probapremier.py
1 import math as m
2
3 st = "\\begin{tabular}{|l|"
4 lc = [75,100,125,150,175,200,225,250,275,300]
5 for l in range(len(lc)):
6     st +="l|"
7 st +="}\n \hline \n Nombre de chiffres "
8 for j in lc :
9     st += "& " + "\\textbf{"+str(j)+"}" 
10 st +="\\\\\n \hline \n Dernier chiffre quelconque "
11 for j in lc :
12     st += "& " + str(int(m.log(pow(10,j))))
13 st +="\\\\\n \hline \n Dernier chiffre impair "
14 for j in lc :
15     st += "& " + str(int(m.log(pow(10,j))*0.5))
16 st +="\\\\\n \hline \n Dernier chiffre dans $\\{1,3,7,9\\}$"
17 for j in lc :
18     st += "& " + str(int(m.log(pow(10,j))*0.4))
19
20  
21 st +="\\\\\n \\hline \\end{tabular}"
22 print st
23