Einzelnen Beitrag anzeigen

Benutzerbild von nailor
nailor

Registriert seit: 12. Dez 2002
Ort: Karlsruhe
1.989 Beiträge
 
#2

Re: Problem mit While Schleife (immer noch)

  Alt 6. Aug 2004, 00:54
break spring aus ner schleife raus. machst du so:

Delphi-Quellcode:
j:=0 ;
while j>= length(vza) do begin
if vza[j] = 1 then
  begin
    intervallanf := j;
    for i:= j to length(vza) - j do
      begin
        if vza[j+i] = 1 then
          begin
            intervallend := j+i;
            // sooooooooooooooooooooo:
            j:= intervallend;
            break;
          end;
      end;
    end;
if vza[j] = 0 then inc(j);
end;
Michael N.
http://nailor.devzero.de/code/sharpmath/testing/ --- Tests, Feedback, Anregungen, ... aller Art sehr willkommen!
::: don't try so hard - it'll happen for a reason :::
  Mit Zitat antworten Zitat