9 lines
158 B
Python
Executable File
9 lines
158 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
p = 3.141592
|
|
rayon = int(input("Quel est le diametre du cercle ?"))
|
|
|
|
resultat = 2*p*rayon
|
|
|
|
print("Le rayon du cercle est de " , resultat)
|