Télécharger la présentation
La présentation est en train de télécharger. S'il vous plaît, attendez
1
VBA / Excel TP 6 La boucle FOR
2
Répétition Pour répéter n fois la même chose :
solution classique - le « copier - coller » Ex : affichez 5 fois « bonjour » : Sub begaie() msgbox "Bonjour“ End Sub
3
La boucle For Sub begaie() For i = 1 to 5 msgbox "Bonjour“ Next
Pour répéter n fois une séquence d’opération : Sub begaie() For i = 1 to 5 msgbox "Bonjour“ Next End Sub Écrire et tester avec le débuggeur. Placez un espion sur la variable i
4
La boucle for : explication
Sub begaie() For i = 1 to 10 msgbox "Bonjour“ Next End Sub i : iterateur 1 : valeur de départ 10 : valeur d’arrivée
5
La boucle for For (iterateur) = (départ) to (arrivée) (Instructions)
Next Au départ, l’itérateur vaut (départ) A chaque itération : - les instructions sont exécuté - l’itérateur est incrémenté On répète jusqu’à atteindre (arrivée)
6
Les répétitions (bis) Compter de 1 à 5 : Sub begaie()
msgbox “Attention : 1" msgbox “Attention : 2" msgbox “Attention : 3" msgbox “Attention : 4" msgbox “Attention : 5“ Msgbox “Boom !“ End Sub
7
La boucle for : exemple 2 Sub compte() For i = 1 to 5
msgbox “Attention : ” & i Next msgbox “boom !” End Sub Écrire et tester avec le débuggeur. Placez un espion sur la variable i
8
Exercices Voir TP 6.pdf
Présentations similaires
© 2024 SlidePlayer.fr Inc.
All rights reserved.