De sequentie De begrensde herhaling Controlestructuren De sequentie De begrensde herhaling
De sequentie of opeenvolging
De begrensde herhaling Probleemstelling
De begrensde herhaling Oplossing Aantal herhalingen Opdrachten die herhaald worden
De begrensde herhaling Programma in VBA Declareren Aantal herhalingen Opdrachten
De begrensde herhaling Algemeen: For telvariabele = 1 To aantal Opdracht 1 Opdracht 2 … Next telvariabele Opmerking: De telvariabele behoort tot het gegevenstype Integer of Long en moet gedeclareerd worden.
Opdracht 2
Oplossing opdracht 2 Sub BerekenSomTienGetallen () Dim intGetal As Integer, intSom As Integer intSom = 0 intGetal = InputBox (“Geef een getal”) intSom = intSom + intGetal intGetal = InputBox (“Geef een getal”) intSom = intSom + intGetal … End Sub
Oplossing opdracht 2 Sub BerekenSomTienGetallen () Dim intGetal As Integer, intSom As Integer intSom = 0 End Sub
Oplossing opdracht 2 Sub BerekenSomTienGetallen () Dim intGetal As Integer, intSom As Integer Dim intTel As Integer intSom = 0 For intTel 1 To 10 intGetal = InputBox (“Geef een getal”) intSom = intSom + intGetal Next intTel End Sub