Réponse :
salut
pour n=3
(1*1)+(1*(1/2))+(1*(1/3))= 1.833
pour n=4
(1*1)+(1*(1/2))+(1*(1/3))+(1*(1/4))= 2.083
programme TI
prompt n
0 -> S
For ( K,1,N)
S+(1/K) -> S
End
Disp S
pour n=5 => S=2.283
pour n=10 => S= 2.929
Explications étape par étape
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
Réponse :
salut
pour n=3
(1*1)+(1*(1/2))+(1*(1/3))= 1.833
pour n=4
(1*1)+(1*(1/2))+(1*(1/3))+(1*(1/4))= 2.083
programme TI
prompt n
0 -> S
For ( K,1,N)
S+(1/K) -> S
End
Disp S
pour n=5 => S=2.283
pour n=10 => S= 2.929
Explications étape par étape