Réponse:
Voilà les traductions en python :
Le premier programme en Pascal :
import math
diametre = float(input())
perimetre = math.pi * diametre
print(diametre, perimetre)
Le programme en C++ :
def pgcd(a, b):
while a != b:
if a > b:
a -= b
else:
b -= a
return a
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
Réponse:
Voilà les traductions en python :
Le premier programme en Pascal :
import math
diametre = float(input())
perimetre = math.pi * diametre
print(diametre, perimetre)
Le programme en C++ :
def pgcd(a, b):
while a != b:
if a > b:
a -= b
else:
b -= a
return a