matheraum.de
Raum für Mathematik
Offene Informations- und Nachhilfegemeinschaft

Für Schüler, Studenten, Lehrer, Mathematik-Interessierte.
Hallo Gast!einloggen | registrieren ]
Startseite · Forum · Wissen · Kurse · Mitglieder · Team · Impressum
Forenbaum
^ Forenbaum
Status Mathe
  Status Schulmathe
    Status Primarstufe
    Status Mathe Klassen 5-7
    Status Mathe Klassen 8-10
    Status Oberstufenmathe
    Status Mathe-Wettbewerbe
    Status Sonstiges
  Status Hochschulmathe
    Status Uni-Analysis
    Status Uni-Lin. Algebra
    Status Algebra+Zahlentheo.
    Status Diskrete Mathematik
    Status Fachdidaktik
    Status Finanz+Versicherung
    Status Logik+Mengenlehre
    Status Numerik
    Status Uni-Stochastik
    Status Topologie+Geometrie
    Status Uni-Sonstiges
  Status Mathe-Vorkurse
    Status Organisatorisches
    Status Schule
    Status Universität
  Status Mathe-Software
    Status Derive
    Status DynaGeo
    Status FunkyPlot
    Status GeoGebra
    Status LaTeX
    Status Maple
    Status MathCad
    Status Mathematica
    Status Matlab
    Status Maxima
    Status MuPad
    Status Taschenrechner

Gezeigt werden alle Foren bis zur Tiefe 2

Navigation
 Startseite...
 Neuerdings beta neu
 Forum...
 vorwissen...
 vorkurse...
 Werkzeuge...
 Nachhilfevermittlung beta...
 Online-Spiele beta
 Suchen
 Verein...
 Impressum
Das Projekt
Server und Internetanbindung werden durch Spenden finanziert.
Organisiert wird das Projekt von unserem Koordinatorenteam.
Hunderte Mitglieder helfen ehrenamtlich in unseren moderierten Foren.
Anbieter der Seite ist der gemeinnützige Verein "Vorhilfe.de e.V.".
Partnerseiten
Dt. Schulen im Ausland: Mathe-Seiten:Weitere Fächer:

Open Source FunktionenplotterFunkyPlot: Kostenloser und quelloffener Funktionenplotter für Linux und andere Betriebssysteme
StartseiteMatheForenBASICFor-Loop
Foren für weitere Schulfächer findest Du auf www.vorhilfe.de z.B. Deutsch • Englisch • Französisch • Latein • Spanisch • Russisch • Griechisch
Forum "BASIC" - For-Loop
For-Loop < BASIC < Programmiersprachen < Praxis < Informatik < Vorhilfe
Ansicht: [ geschachtelt ] | ^ Forum "BASIC"  | ^^ Alle Foren  | ^ Forenbaum  | Materialien

For-Loop: Frage (beantwortet)
Status: (Frage) beantwortet Status 
Datum: 14:19 Mo 31.03.2014
Autor: Mathics

Hallo,

ich habe mir gerade die Definition zu einem For-Loop in VBA durchgelesen. Da steht bei uns:

A for-loop consists of a loop head and a loop body. The head of the loop is a control expression which consists of three parameters:
- The initialization expression, which defines the initial condition for the loop.
- The loop test expression, which is tested for every execution of the loop
  body
- The iterator, which is executed at the end of each loop iteration and changes  
  the variable which is tested


Wenn man sich jetzt folgendes Beispiel anschaut:

Dim i As Integer, j As Integer j= 0
For i = 1 To 6 Step 1
j= j+ i
Next i

Ist der loop head die Zeile mit For i=1 To 6 Step 1? Und der Rest der Body? Was ist ist hier das initilization expression, loop test expression und der iterator?

Ich hätte gesagt loop test expression ist das 1 to 6 und der iterator das i. Aber was genau ist mit dem initialization expression dann gemeint?


LG
Mathics

        
Bezug
For-Loop: Antwort
Status: (Antwort) fertig Status 
Datum: 14:32 Mo 31.03.2014
Autor: Valerie20


> Hallo,

>

> ich habe mir gerade die Definition zu einem For-Loop in VBA
> durchgelesen. Da steht bei uns:

>

> A for-loop consists of a loop head and a loop body. The
> head of the loop is a control expression which consists of
> three parameters:
> - The initialization expression, which defines the initial
> condition for the loop.
> - The loop test expression, which is tested for every
> execution of the loop
> body
> - The iterator, which is executed at the end of each loop
> iteration and changes
> the variable which is tested

>
>

> Wenn man sich jetzt folgendes Beispiel anschaut:

>

> Dim i As Integer, j As Integer j= 0
> For i = 1 To 6 Step 1
> j= j+ i
> Next i

>

> Ist der loop head die Zeile mit For i=1 To 6 Step 1? Und
> der Rest der Body? Was ist ist hier das initilization
> expression, loop test expression und der iterator?

>

> Ich hätte gesagt loop test expression ist das 1 to 6 und
> der iterator das i. Aber was genau ist mit dem
> initialization expression dann gemeint?

>

Hallo Mathics,
Ich kenne mich zwar mit VBA null aus, aber die Programmiersprachen ähneln sich ja doch alle.

1. Initial Condition:
Sollte einfach i=1 sein. Du kannst ja selbst entscheiden, welche initiale Bedingung du möchtest. Es könnte genausogut i=4 heißen.

2. Loop test expression:
Nach jedem Schleifendurchlauf wird geprüft, ob die Bedingung aus dem Schleifenkopf noch erfüllt ist. Bist du bei 6 angelangt, so wird aus der Schleife gesprungen.

3. Iterator
Muss "Next i" am Ende der Schleife sein.
Mit diesem Befehl sagst du, dass die Codition um die Schrittweite "Step" erhöht wird.

Valerie

Bezug
Ansicht: [ geschachtelt ] | ^ Forum "BASIC"  | ^^ Alle Foren  | ^ Forenbaum  | Materialien


^ Seitenanfang ^
www.matheraum.de
[ Startseite | Forum | Wissen | Kurse | Mitglieder | Team | Impressum ]