Réponse :
salut
je l'ai fait en python
n=10
for i in range(1,n):
for j in range(1,n):
print(i*j)
en sortie c'est les tables de multiplication de 1 à 9
Explications étape par étape
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
Réponse :
salut
je l'ai fait en python
n=10
for i in range(1,n):
for j in range(1,n):
print(i*j)
en sortie c'est les tables de multiplication de 1 à 9
Explications étape par étape