sisr-11-python3

This commit is contained in:
bruno
2021-09-30 16:36:58 +02:00
parent 613e5877d7
commit 0904bce7ad
7 changed files with 191 additions and 0 deletions

8
sio2/sisr/11-python/ex1.py Executable file
View File

@@ -0,0 +1,8 @@
#!/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)