2021-09-29 11:08:07 +02:00

10 lines
337 B
Python
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/python3
#1. Ecrire un programme python qui demande le rayon dun cercle à lutilisateur, calcule
#le périmètre (remarque: perimetre = 2 * 3.141592 * R) et affiche "Le périmètre vaut: "
R = int(input('Quel est le rayon du cercle ? '))
perimetre = 2 * 3.141592 * R
print('Le périmètre du cercle est ', perimetre)