Free Pascal <-> Visual Basic .NET | Következő iteráció elindítása

Free Pascal

continue

Leírás

continue ;
Használt kulcsszavak: continue
Megjegyzés: Következő helyeken használható:
Elöltesztelő ciklus Hatultesztelős ciklus amig a feltétel hamis

Példaprogramok

Free Pascal

Következő iteráció elindítása lehetséges használata:
i:=0;
while i<10 do inc(i);
x :=0;
while i<20 do
begin
 i:= i+2;
 if i=16 then
 begin
    continue
 end;
 inc(x); 
end;
.
Visual Basic .NET

continue while

Leírás

continue while
Használt kulcsszavak: while continue
Megjegyzés: Következő helyeken használható:
Elöltesztelő ciklus Hatultesztelős ciklus amig a feltétel hamis

Példaprogramok

Visual Basic .NET

Következő iteráció elindítása lehetséges használata:
i=0
while i<10
 i=i+1
end while
x =0
while i<20
 i= i+2
 if i=16 then
    continue while
 end if
 x=x+1 
end while
Free Pascal

continue

Leírás

continue ;
Használt kulcsszavak: continue
Megjegyzés: Következő helyeken használható:
Elöltesztelő ciklus Hatultesztelős ciklus amig a feltétel hamis

Példaprogramok

Free Pascal

Következő iteráció elindítása lehetséges használata:
i:=0;
while i<10 do inc(i);
x :=0;
while i<20 do
begin
 i:= i+2;
 if i=16 then
 begin
    continue
 end;
 inc(x); 
end;
.
Visual Basic .NET

continue for

Leírás

continue for
Használt kulcsszavak: continue
Megjegyzés: Következő helyeken használható:
Elöltesztelő ciklus Hatultesztelős ciklus amig a feltétel hamis

Példaprogramok

Visual Basic .NET

Következő iteráció elindítása lehetséges használata:
i=0
while i<10
 i=i+1
end while
x =0
while i<20
 i= i+2
 if i=16 then
    continue while
 end if
 x=x+1 
end while
Free Pascal

continue

Leírás

continue ;
Használt kulcsszavak: continue
Megjegyzés: Következő helyeken használható:
Elöltesztelő ciklus Hatultesztelős ciklus amig a feltétel hamis

Példaprogramok

Free Pascal

Következő iteráció elindítása lehetséges használata:
i:=0;
while i<10 do inc(i);
x :=0;
while i<20 do
begin
 i:= i+2;
 if i=16 then
 begin
    continue
 end;
 inc(x); 
end;
.
Visual Basic .NET

continue do

Leírás

continue do
Használt kulcsszavak: do continue
Megjegyzés: Következő helyeken használható:
Elöltesztelő ciklus Hatultesztelős ciklus amig a feltétel hamis

Példaprogramok

Visual Basic .NET

Következő iteráció elindítása lehetséges használata:
i=0
while i<10
 i=i+1
end while
x =0
while i<20
 i= i+2
 if i=16 then
    continue while
 end if
 x=x+1 
end while
Más nyelveken: en hu cz sk